Просмотр исходного кода

Merge branch 'dev' of http://39.101.143.165:8090/dong_k/tenant-Platform into dev

@dongkboy 3 месяцев назад
Родитель
Сommit
de20de34c9

+ 6 - 1
src/views/insurancePolicy/index.vue

@@ -1600,6 +1600,11 @@ const initDetail = () => {
   api.insurancePolicyApi.getOrderDetail(myRoute.query.orderNo).then((res: any) => {
     if (res.code == 200) {
       let obj = res.data
+
+      owerFormInfo.value = { ...obj.ownersInfo, title: '车主', policyPersonType: '1' };
+      policyHolderInfo.value = { ...obj.policyHolderInfo, title: '投保人', policyPersonType: '2' };
+      insuredPersonInfo.value = { ...obj.insuredPersonInfo, title: '被保人', policyPersonType: '3' };
+
       // 设置业务员信息
       insurancePolicyForm.value.salesman = obj?.salesmanInfo?.name
       insurancePolicyForm.value.mobile = obj?.salesmanInfo?.mobile
@@ -1610,7 +1615,7 @@ const initDetail = () => {
       insurancePolicyForm.value.vinNo = obj?.carInfoVo?.vinNo
       insurancePolicyForm.value.brandName = obj?.carInfoVo?.brandName
       insurancePolicyForm.value.engineNo = obj?.carInfoVo?.engineNo
-      insurancePolicyForm.value.carNatureCode = obj?.carInfoVo?.carNatureCode
+      insurancePolicyForm.value.carNatureCode = obj?.carInfoVo?.carNatureCode 
       insurancePolicyForm.value.vehicleUseCode = obj?.carInfoVo?.vehicleUseCode
       insurancePolicyForm.value.plateType = obj?.carInfoVo?.carKindCode
       insurancePolicyForm.value.carTypeCode = obj?.carInfoVo?.carTypeCode

+ 0 - 1
src/views/quoteConfig/agreement/agreementDetails.vue

@@ -804,7 +804,6 @@ const costitemEdit = (id: string, item: any, index: number, costindex: number) =
       ruleFeeHeaderTitle.value = res.data.productName;
       costitemEditInfo.value = res.data;
       ruleFeeEditVisible.value = true;
-    } else {
     }
   });
 }

+ 1 - 1
src/views/quoteConfig/dispatch/components/rule.vue

@@ -860,7 +860,7 @@ const regionLicenseNumber = (value: string) => {
       let data: any = [];
       res.data.map((val: any) => {
         data.push({
-          idStr: val.areaNumber,
+          idStr: val.license,
           name: val.license,
         })
         return val;