各项配置

master
fanluyan 1 year ago
parent 86321dcdf6
commit 6dd3a78195

@ -5,6 +5,7 @@
title="col配置"
:visible.sync="colDialogshow"
width="1020px"
@close="hide"
>
<div class="colContain">
<el-table
@ -70,9 +71,7 @@
</el-table>
</div>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="colDialogshow = false"
> </el-button
>
<el-button type="primary" @click="hide"> </el-button>
</div>
</el-dialog>
</div>
@ -153,6 +152,7 @@ export default {
},
hide() {
this.colDialogshow = false;
this.cellIndex = null;
},
},
};

@ -98,6 +98,7 @@
保存
</el-link>
<el-link
:disabled="disableFlag"
type="primary"
@click="handlecolConfigClick(scope)"
size="small"
@ -149,6 +150,7 @@ export default {
tableSelectShow: false,
cellIndex: null,
colChildData: "",
disableFlag: false,
};
},
mounted() {
@ -245,6 +247,7 @@ export default {
this.tableName = "";
this.tableSelectShow = true;
this.cellIndex = $index;
this.disableFlag = true;
},
//tableName
handleSaveClick({ row }) {
@ -257,6 +260,7 @@ export default {
if (res.success) {
this.cellIndex = null;
this.geticdList(row.iedName);
this.disableFlag = false;
}
})
.catch((err) => {});
@ -296,7 +300,7 @@ export default {
duration: 1500,
showClose: true,
message: "请先配置tableName",
type: "success",
type: "warning",
});
// this.handleEditClick(val);
} else {

Loading…
Cancel
Save