|
@@ -133,6 +133,10 @@
|
|
|
<text>¥</text>
|
|
<text>¥</text>
|
|
|
<text>{{companyItem.result.costs.sumPremium}}</text>
|
|
<text>{{companyItem.result.costs.sumPremium}}</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <view v-if="companyItem.isReSelect" class="quoteBtn dis a-c j-c"
|
|
|
|
|
+ @click.stop="individualQuote(companyItem)">
|
|
|
|
|
+ 立即报价
|
|
|
|
|
+ </view>
|
|
|
<text class="discountedPrice" v-if="companyItem.result.insFeeOrders">优惠
|
|
<text class="discountedPrice" v-if="companyItem.result.insFeeOrders">优惠
|
|
|
{{ companyItem.result.insFeeOrders.totalPayablePremium }}</text>
|
|
{{ companyItem.result.insFeeOrders.totalPayablePremium }}</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -736,14 +740,17 @@
|
|
|
company.result = res.data;
|
|
company.result = res.data;
|
|
|
const updatedItem = {
|
|
const updatedItem = {
|
|
|
...company,
|
|
...company,
|
|
|
- quoteCode: 200
|
|
|
|
|
|
|
+ quoteCode: 200,
|
|
|
|
|
+ isReSelect: false // 清除重选标记,回到“仅展示价格”状态
|
|
|
};
|
|
};
|
|
|
this.quotableCompanyList.splice(companyIndex, 1, updatedItem);
|
|
this.quotableCompanyList.splice(companyIndex, 1, updatedItem);
|
|
|
} else {
|
|
} else {
|
|
|
company.msg = res.msg;
|
|
company.msg = res.msg;
|
|
|
const updatedItem = {
|
|
const updatedItem = {
|
|
|
...company,
|
|
...company,
|
|
|
- quoteCode: '3'
|
|
|
|
|
|
|
+ quoteCode: '3',
|
|
|
|
|
+ isReSelect: false // 清除重选标记,回到“仅展示价格”状态
|
|
|
|
|
+
|
|
|
};
|
|
};
|
|
|
this.quotableCompanyList.splice(companyIndex, 1, updatedItem);
|
|
this.quotableCompanyList.splice(companyIndex, 1, updatedItem);
|
|
|
return;
|
|
return;
|