|
@@ -1249,7 +1249,7 @@
|
|
|
</el-dialog>
|
|
|
<!-- 节点参数 -->
|
|
|
<el-dialog
|
|
|
- title="节点参数111"
|
|
|
+ title="节点参数"
|
|
|
:visible.sync="nodeInfoVisible"
|
|
|
width="800px"
|
|
|
append-to-body
|
|
@@ -1276,7 +1276,7 @@
|
|
|
style="font-size: 24px; color: rgb(37, 193, 99); cursor: pointer"
|
|
|
></i>
|
|
|
</div>
|
|
|
- <el-table :data="nodeInfoTable" border style="width: 100%" height="400">
|
|
|
+ <el-table :data="nodeInfoTable" border style="width: 100%" height="400" v-loading="nodeInfoTableLoad">
|
|
|
<el-table-column align="center" prop="name" label="参数名称">
|
|
|
<template slot-scope="scope">
|
|
|
<el-select
|
|
@@ -1781,6 +1781,7 @@ export default {
|
|
|
|
|
|
nodeInfoVisible: false,
|
|
|
nodeInfoTable: [],
|
|
|
+ nodeInfoTableLoad:false,
|
|
|
namelist: [],
|
|
|
namelists: [],
|
|
|
delids:[],
|
|
@@ -2804,8 +2805,12 @@ export default {
|
|
|
type: 1,
|
|
|
projectId: this.projectid
|
|
|
}
|
|
|
+ this.nodeInfoTableLoad=true
|
|
|
refrehPram(prams).then((res)=>{
|
|
|
- console.log(res);
|
|
|
+ this.nodeInfoTableLoad=false;
|
|
|
+ if(res.data.code==200){
|
|
|
+ this.$message.success('刷新成功');
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
delNodeInfo(key,obj) {
|