|
@@ -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 = "";
|
|
|
},
|