Przeglądaj źródła

增加交强商业续保和出险次数字段

@dongkboy 2 lat temu
rodzic
commit
f4d1377dad

+ 6 - 2
src/views/Core/components/detailsDialog.vue

@@ -104,8 +104,6 @@
               <el-col :span="6"><span>评分:</span>{{ orderInfo.extendInfo.score ?orderInfo.extendInfo.score :'' }}</el-col>
               <el-col :span="6"><span>总赔付率:</span>{{ orderInfo.extendInfo.lossRation }}</el-col>
               <el-col :span="6"><span>总折扣率:</span>{{ orderInfo.extendInfo.totalAdjustRate }}</el-col>
-              <el-col :span="6"><span>出险信息:</span>{{ orderInfo.extendInfo.accidentInfoStr }}</el-col>
-
             </el-row>
             <el-row class="premium-style " :gutter="20">
               <el-col :span="6"><span>交强类型评分:</span>{{ orderInfo.extendInfo.jqScore }}</el-col>
@@ -117,6 +115,12 @@
               <el-col :span="6"><span>商业赔付率:</span>{{ orderInfo.extendInfo.syLossRation }}</el-col>
               <el-col :span="6"><span>商业险折扣:</span>{{ orderInfo.extendInfo.syAdjustRate }}</el-col>
             </el-row>
+            <el-row class="premium-style " :gutter="20">
+              <el-col :span="6"><span>交强续保:</span>{{ orderInfo.extendInfo.jqRenewal }}</el-col>
+              <el-col :span="6"><span>商业续保:</span>{{ orderInfo.extendInfo.syRenewal }}</el-col>
+              <el-col :span="6"><span>交强出险次数:</span>{{ orderInfo.extendInfo.jqClaims }}</el-col>
+              <el-col :span="6"><span>商业出险次数:</span>{{ orderInfo.extendInfo.syClaims }}</el-col>
+            </el-row>
             <el-row class="premium-style " :gutter="20" v-if="orderInfo.ubiPredictedInfoScore">
               <el-col :span="6"><span>紫金能源车(鼎然-车辆风险评分):</span>{{ orderInfo.ubiPredictedInfoScore }}</el-col>
             </el-row>

+ 26 - 5
src/views/Task/daikeComponents/KtLetter.vue

@@ -835,7 +835,7 @@
               </el-col>
               <el-col :span="24" v-show="reslistitem.quoteCode == '200' && reslistitem.result.feeNoDescription">
                 <div class="flex offer-time" style="color:#D42426">
-                  <span>该车未匹配费用,不建议投保!</span>
+                  <span>该车未匹配销管费用,不建议投保!</span>
                   <el-tooltip class="item" effect="dark" content="优惠匹配错误信息" placement="top">
                     <i class="el-icon-s-goods"
                       @click="open3(reslistitem.namesimple + '优惠信息', reslistitem.result.feeNoDescription)"
@@ -930,11 +930,32 @@
                     商业折扣系数:
                     <span>{{ reslistitem.result.syAdjustRate }}</span>
                   </span>
-                  <span v-if="reslistitem.result.accidentInfoStr" class="marginL">
-                    出险信息:
+                  <span v-if="reslistitem.result.jqRenewal" class="marginL">
+                    交强续保:
                     <span>
                       {{
-                        reslistitem.result.accidentInfoStr }}
+                        reslistitem.result.jqRenewal? reslistitem.result.jqRenewal:"无" }}
+                    </span>
+                  </span>
+                  <span v-if="reslistitem.result.syRenewal" class="marginL">
+                    商业续保:
+                    <span>
+                      {{
+                        reslistitem.result.syRenewal? reslistitem.result.syRenewal:"无" }}
+                    </span>
+                  </span>
+                  <span v-if="reslistitem.result.jqClaims" class="marginL">
+                    交强出险次数:
+                    <span>
+                      {{
+                        reslistitem.result.jqClaims? reslistitem.result.jqClaims:'无' }}
+                    </span>
+                  </span>
+                  <span v-if="reslistitem.result.syClaims" class="marginL">
+                    商业出险次数:
+                    <span>
+                      {{
+                        reslistitem.result.syClaims? reslistitem.result.syClaims:'无' }}
                     </span>
                   </span>
                   <span v-if="reslistitem.namesimple == '紫金财险' && reslistitem.result.ubiPredictedInfoScore"
@@ -6097,7 +6118,7 @@ export default {
       else{
         return '-'
       }
-    
+
     },
     // 爬虫对接
     qoutedetail(companyId) {