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

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

祁鹏飞 1 месяц назад
Родитель
Сommit
1373ef4e18

+ 6 - 6
src/views/finance/modules/auditDetail.vue

@@ -140,7 +140,7 @@
           <el-col :span="6" class="TBMsgItem">
             <span class="label">交强险续保</span>
             <span class="value">
-              <span>{{ detailData?.order?.biApplyNumber || '--' }}</span>
+              <span>{{ [ '新保', '续保', '转保'][detailData?.scoreVo?.jqRenewal] ||  '--' }}</span>
             </span>
           </el-col>
           <el-col :span="6" class="TBMsgItem">
@@ -170,7 +170,7 @@
           <el-col :span="6" class="TBMsgItem">
             <span class="label">商业险续保</span>
             <span class="value">
-              <span>{{ detailData?.order?.biApplyNumber || '--' }}</span>
+              <span>{{ [ '新保', '续保', '转保'][detailData?.scoreVo?.syRenewal] || '--' }}</span>
             </span>
           </el-col>
           <el-col :span="6" class="TBMsgItem">
@@ -203,18 +203,18 @@
               <span>{{ detailData?.order?.transferBi  ? '是' : '否' }}</span>
             </span>
           </el-col>
-          <el-col :span="6" class="TBMsgItem">
+          <!-- <el-col :span="6" class="TBMsgItem">
             <span class="label">是否脱保</span>
             <span class="value">
               <span>--</span>
             </span>
-          </el-col>
-          <el-col :span="6" class="TBMsgItem">
+          </el-col> -->
+          <!-- <el-col :span="6" class="TBMsgItem">
             <span class="label">是否二手车</span>
             <span class="value">
               <span>--</span>
             </span>
-          </el-col>
+          </el-col> -->
           <el-col :span="6" class="TBMsgItem" v-for="(item, index) in detailData?.scoreVo?.scoreJson" :key="index">
             <span class="label">{{ item.scoreName }}</span>
             <span class="value">

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

@@ -1514,7 +1514,7 @@
         <el-button size="small" type="primary" @click="handlePayCodeClose">关闭</el-button>
       </template>
     </el-dialog>
-    <Equities v-model:show="equitiesShow" :recipientInfo="[owerFormInfo, policyHolderInfo, insuredPersonInfo]"
+    <Equities v-model:show="equitiesShow" v-if="equitiesShow" :recipientInfo="[owerFormInfo, policyHolderInfo, insuredPersonInfo]"
       :EquitiesInfo="EquitiesInfo" @save="handleEquitiesSave"></Equities>
   </div>
   <quotation ref="quotationRef" :quotationObj="quotationObj" :insurancePolicyForm="insurancePolicyForm" />

+ 1 - 0
src/views/insurancePolicy/modules/EquitiesItem.vue

@@ -211,6 +211,7 @@ const areaProps = {
 const recipientOptions = ref()
 // 获取权益单品列表
 const getPrivilegeItem = async () => {
+  queryInfo.value.maxPrice = props.EquitiesInfo.insFeeOrders.availableAmount;
   try {
     const response = await api.additionalApi.rightsList(queryInfo.value);
     privilegeItem.value = response.data.records || [];

+ 2 - 1
src/views/insurancePolicy/modules/EquitiesPage.vue

@@ -68,7 +68,7 @@
                 </div>
               </div>
             </div>
-            <el-table class="details" :data="selectedPackageDetail.rightsDetailsList" max-height="300px"
+            <el-table class="details" v-if="selectedPackageDetail.length" :data="selectedPackageDetail.rightsDetailsList" max-height="300px"
               style="flex: 1;" border>
               <el-table-column prop="rightsName" label="权益名称" width="180" align="center" />
               <el-table-column prop="number" label="数量" align="center" />
@@ -316,6 +316,7 @@ const tabslist = ref([
 // 地区选择器改变时触发
 // 获取权益套餐列表
 const getBenefitPackageList = async () => {
+  queryInfo.value.maxPrice = props.EquitiesInfo.insFeeOrders.availableAmount;
   try {
     const response = await api.additionalApi.rightsGrantList(queryInfo.value);
     if(response.code == '200'){

+ 1 - 1
src/views/insurancePolicy/modules/underwriting.vue

@@ -137,7 +137,7 @@
         @click="handleSubmit(false)">取消</el-button>
       <el-button type="primary" @click="handleSubmit(true)" :loading="loading">提交核保</el-button>
     </div>
-    <Equities v-model:show="equitiesShow" :recipientInfo="recipientInfo" :EquitiesInfo="EquitiesInfo"
+    <Equities v-model:show="equitiesShow" v-if="equitiesShow" :recipientInfo="recipientInfo" :EquitiesInfo="EquitiesInfo"
       @save="handleEquitiesSave"></Equities>
   </div>
 </template>