Compare commits
17
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd8f3584c7 | ||
|
|
a136eeff91 | ||
|
|
9c2c57120b | ||
|
|
f7b37f7a0b | ||
|
|
f5c2d1687f | ||
|
|
a56824ff73 | ||
|
|
b33ecb5a1e | ||
|
|
af9d7cdbf2 | ||
|
|
1834a1a838 | ||
|
|
3438a7f9b3 | ||
|
|
edbc60d3f3 | ||
|
|
914249cc3a | ||
|
|
1217b7671c | ||
|
|
bd3e358ec7 | ||
|
|
9788542b38 | ||
|
|
65a53ab267 | ||
|
|
0f70e55e66 |
@@ -109,8 +109,8 @@
|
|||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
</div>
|
</div>
|
||||||
<div class="lineBot"></div>
|
<div class="lineBot" v-if="permissonList?.includes('hasInsuranceAudit')"></div>
|
||||||
<div class="itemContent">
|
<div class="itemContent" v-if="permissonList?.includes('hasInsuranceAudit')">
|
||||||
<div class="titleType">
|
<div class="titleType">
|
||||||
<img class="startImg" src="@/assets/start.png" />
|
<img class="startImg" src="@/assets/start.png" />
|
||||||
<span>保额</span>
|
<span>保额</span>
|
||||||
@@ -331,7 +331,7 @@ export default {
|
|||||||
this.$toast('保费不能为空')
|
this.$toast('保费不能为空')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if(this.hasLiabilityInsurance == 1 && !this.liabilityInsuranceQuota){
|
if(this.hasLiabilityInsurance == 1 && !this.liabilityInsuranceQuota && this.permissonList?.includes('hasInsuranceAudit')){
|
||||||
this.$toast('保额不能为空')
|
this.$toast('保额不能为空')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -328,8 +328,8 @@
|
|||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
</div>
|
</div>
|
||||||
<div class="lineBot"></div>
|
<div class="lineBot" v-if="permissonList?.includes('hasInsuranceAudit')"></div>
|
||||||
<div class="itemContent">
|
<div class="itemContent" v-if="permissonList?.includes('hasInsuranceAudit')">
|
||||||
<div class="titleType">
|
<div class="titleType">
|
||||||
<img class="startImg" src="@/assets/start.png" />
|
<img class="startImg" src="@/assets/start.png" />
|
||||||
<span>保额</span>
|
<span>保额</span>
|
||||||
@@ -1285,7 +1285,7 @@ export default {
|
|||||||
this.$toast('保费不能为空')
|
this.$toast('保费不能为空')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if(!this.liabilityInsuranceQuota){
|
if(this.permissonList.includes('hasInsuranceAudit') && !this.liabilityInsuranceQuota){
|
||||||
this.$toast('保额不能为空')
|
this.$toast('保额不能为空')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user