chenrui  2 years ago
parent
commit
aa569526a2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/components/Table/index.vue

+ 2 - 2
src/components/Table/index.vue

@@ -775,7 +775,7 @@ export default {
         arrbegin.beginPosition.forEach((element) => {
           if (element.v === this.tableForm.beginPosition) {
             if (element.nodeCode !== this.tableForm.beginNode) {
-              this.tableForm.beginPosition = null;
+              this.tableForm.beginPosition = "";
             }
           }
         });
@@ -806,7 +806,7 @@ export default {
         arrbegin.endPosition.forEach((element) => {
           if (element.v === this.tableForm.endPosition) {
             if (element.nodeCode !== this.tableForm.endNode) {
-              this.tableForm.endPosition = null;
+              this.tableForm.endPosition = "";
             }
           }
         });