|
@@ -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 = "";
|
|
|
+ this.tableForm.beginPosition = null;
|
|
|
}
|
|
|
}
|
|
|
});
|
|
@@ -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 = "";
|
|
|
+ this.tableForm.endPosition = null;
|
|
|
}
|
|
|
}
|
|
|
});
|