|
@@ -786,7 +786,7 @@ export default {
|
|
|
this.form.fAmtcr = fAmtcr;
|
|
|
},
|
|
|
submit() {
|
|
|
- if (this.form.fCorpid == null) {
|
|
|
+ if (!this.form.fCorpid) {
|
|
|
return this.$message.error("客户名称不能为空");
|
|
|
}
|
|
|
this.corpList.forEach((e) => {
|
|
@@ -823,7 +823,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
save(type) {
|
|
|
- if (this.form.fCorpid == null) {
|
|
|
+ if (!this.form.fCorpid) {
|
|
|
return this.$message.error("客户名称不能为空");
|
|
|
}
|
|
|
this.corpList.forEach((e) => {
|