Browse Source

修改:业务空间台账 编辑 模式下,多选的信息点无法打开选择框,以及在选择框内选完值无法及时渲染到表格内的问题

niuheng 3 years ago
parent
commit
74a3c66346
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/components/business_space/business/handsontable.vue

+ 6 - 6
src/components/business_space/business/handsontable.vue

@@ -452,7 +452,7 @@ export default {
                 sortIndicator: true, //添加排序
                 renderAllRows: true,
                 autoColumnSize: true,
-                observeChanges: false,
+                // observeChanges: false,
                 language: "zh-CN",
                 manualColumnResize: true,
                 fillHandle: "vertical", //允许纵向填充
@@ -537,7 +537,7 @@ export default {
             if (!this.onlyRead && inputData.dataType == "MENUM") {
                 this.updateInfoData = inputData;
                 this.updateInfoPoint = val;
-                this.updateInput = tools.dataForKey(this.tableData[row.row], val);
+                this.updateInput = tools.dataForKey(this.main[row.row], val);
                 this.myDialog.menum = true;
                 return false;
             }
@@ -553,7 +553,7 @@ export default {
             }
             if (!this.onlyRead && showTools.inputModeArr.indexOf(inputData.dataType) == "-1") {
                 this.updateInfoPoint = val;
-                this.updateInput = tools.dataForKey(this.tableData[row.row], val);
+                this.updateInput = tools.dataForKey(this.main[row.row], val);
                 this.myDialog.update = true;
                 return false;
             }
@@ -566,7 +566,7 @@ export default {
         },
         //更新临时维护信息点
         handleClickUpdate() {
-            tools.setDataForKey(this.tableData[this.row], this.updateInfoPoint, this.updateInput);
+            tools.setDataForKey(this.main[this.row], this.updateInfoPoint, this.updateInput);
             this.tdChange([[this.row, this.updateInfoPoint, null, this.updateInput]], "edit");
             this.updateInputShow = false;
             this.myDialog.update = false;
@@ -574,8 +574,8 @@ export default {
         },
         //多选枚举类型值修改
         handleChangeMenum(newValue) {
-            tools.setDataForKey(this.tableData[this.row], this.updateInfoPoint, newValue);
-            this.handleUpdataTable([[this.row, this.updateInfoPoint, null, newValue]], "edit");
+            tools.setDataForKey(this.main[this.row], this.updateInfoPoint, newValue);
+            this.tdChange([[this.row, this.updateInfoPoint, null, newValue]], "edit");
             this.myDialog.menum = false;
             this.updateInput = "";
         },