Compare commits

...

17 Commits

Author SHA1 Message Date
dd8f3584c7 车辆管理,有责任险审核权限的展示‘保额’且必填 2026-02-12 17:55:55 +08:00
a136eeff91 CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:35 +08:00
9c2c57120b CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:32 +08:00
f7b37f7a0b CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:30 +08:00
f5c2d1687f CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:28 +08:00
a56824ff73 CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:26 +08:00
b33ecb5a1e CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:24 +08:00
af9d7cdbf2 CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:23 +08:00
1834a1a838 CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求 2026-02-03 17:34:22 +08:00
3438a7f9b3 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit dc94c6d261.
2026-01-29 21:32:39 +08:00
edbc60d3f3 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit 31d1388890.
2026-01-29 21:32:36 +08:00
914249cc3a Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit 14a14e2c87.
2026-01-29 21:32:33 +08:00
1217b7671c Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit 62f2c166c6.
2026-01-29 21:32:31 +08:00
bd3e358ec7 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit d18fec1ddc.
2026-01-29 21:32:26 +08:00
9788542b38 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit 3a6d0878aa.
2026-01-29 21:32:22 +08:00
65a53ab267 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit 87546848d2.
2026-01-29 21:32:19 +08:00
0f70e55e66 Revert "CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求"
This reverts commit fed4ae6edf.
2026-01-29 21:32:18 +08:00
2 changed files with 6 additions and 6 deletions

View File

@@ -109,8 +109,8 @@
</template>
</van-field>
</div>
<div class="lineBot"></div>
<div class="itemContent">
<div class="lineBot" v-if="permissonList?.includes('hasInsuranceAudit')"></div>
<div class="itemContent" v-if="permissonList?.includes('hasInsuranceAudit')">
<div class="titleType">
<img class="startImg" src="@/assets/start.png" />
<span>保额</span>
@@ -331,7 +331,7 @@ export default {
this.$toast('保费不能为空')
return
}
if(this.hasLiabilityInsurance == 1 && !this.liabilityInsuranceQuota){
if(this.hasLiabilityInsurance == 1 && !this.liabilityInsuranceQuota && this.permissonList?.includes('hasInsuranceAudit')){
this.$toast('保额不能为空')
return
}

View File

@@ -328,8 +328,8 @@
</template>
</van-field>
</div>
<div class="lineBot"></div>
<div class="itemContent">
<div class="lineBot" v-if="permissonList?.includes('hasInsuranceAudit')"></div>
<div class="itemContent" v-if="permissonList?.includes('hasInsuranceAudit')">
<div class="titleType">
<img class="startImg" src="@/assets/start.png" />
<span>保额</span>
@@ -1285,7 +1285,7 @@ export default {
this.$toast('保费不能为空')
return
}
if(!this.liabilityInsuranceQuota){
if(this.permissonList.includes('hasInsuranceAudit') && !this.liabilityInsuranceQuota){
this.$toast('保额不能为空')
return
}