@dongkboy 1 月之前
父節點
當前提交
2747a99b63
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      pages/quote/quoteRecordDetail.vue

+ 3 - 2
pages/quote/quoteRecordDetail.vue

@@ -344,7 +344,6 @@
 								class="td">{{item.amount}}%</text>
 							<text v-else-if="['TY1', 'TY2', 'TY3', 'TY4'].includes(item.kindCode)"
 								class="td">{{item.serviceTimes}}次</text>
-							<text v-else class="td">{{item.kindCode=='J1'?'--':convertedValue(item.amount)}}</text>
 							<text class="td">{{item.premium?item.premium:'-'}}</text>
 						</view>
 					</view>
@@ -356,7 +355,7 @@
 						</view>
 						<view class="tr dis a-c j-c" v-for="(item,index) in accidentalDrivings" :key="index">
 							<text class="td special">{{item.productName}}</text>
-							<text class="td">{{item.quantity}}</text>
+							<text class="td">{{item.quantity}}</text>
 							<text class="td">{{item.sumAmount}}</text>
 						</view>
 					</view>
@@ -885,6 +884,8 @@
 					this.imageVoList = res.data.imageVoList;
 					this.order = res.data.order;
 					this.imageEcho(res.data.imageVoList) // 影像获取完毕
+					// 去掉this.kindInfoVo中的交强险
+					this.kindInfoVo = this.kindInfoVo.filter(item => item.kindCode != 'J1')
 					this.carInfoVo.carNatureCode = dictionaryMatch(this.car_nature_codeoptions, res
 						.data.carInfoVo
 						.carNatureCode)