diff --git a/yxt-as-ui/src/views/client/customermanagement/customermanagement.vue b/yxt-as-ui/src/views/client/customermanagement/customermanagement.vue index d0950cb750..a4a4fbf891 100644 --- a/yxt-as-ui/src/views/client/customermanagement/customermanagement.vue +++ b/yxt-as-ui/src/views/client/customermanagement/customermanagement.vue @@ -415,7 +415,7 @@ export default { toFiling() { if (this.sids.length === 1) { 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: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' }) return } @@ -530,7 +530,7 @@ export default { }, addVehicle() { 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: '因该条记录中是否为定点企业为是且备案有效期仍在有效期内,需要进行补充备案操作' }) return }