Browse Source

完善客户管理

master
yunuo970428 6 months ago
parent
commit
be44f7130c
  1. 4
      yxt-as-ui/src/views/client/customermanagement/customermanagement.vue

4
yxt-as-ui/src/views/client/customermanagement/customermanagement.vue

@ -415,7 +415,7 @@ export default {
toFiling() { toFiling() {
if (this.sids.length === 1) { if (this.sids.length === 1) {
for (var i = 0; i < this.multipleSelection.length; i++) { for (var i = 0; i < this.multipleSelection.length; i++) {
if (this.multipleSelection[i].isDesignatedEnterprise === '1' || this.multipleSelection[i].isFilingIndate === '1') { if (this.multipleSelection[i].isDesignatedEnterprise === '1' || this.multipleSelection[i].isFilingIndate !== '1') {
this.$message({ showClose: true, type: 'error', message: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' }) this.$message({ showClose: true, type: 'error', message: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' })
return return
} }
@ -530,7 +530,7 @@ export default {
}, },
addVehicle() { addVehicle() {
if (this.sids.length === 1) { if (this.sids.length === 1) {
if (this.multipleSelection[0].isDesignatedEnterprise === '1' || this.multipleSelection[0].isFilingIndate === '1') { if (this.multipleSelection[0].isDesignatedEnterprise === '1' || this.multipleSelection[0].isFilingIndate !== '1') {
this.$message({ showClose: true, type: 'error', message: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' }) this.$message({ showClose: true, type: 'error', message: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' })
return return
} }

Loading…
Cancel
Save