|
@@ -1211,7 +1211,7 @@
|
|
|
<i
|
|
|
class="el-icon-refresh-right marbottom10"
|
|
|
@click="refreshnfoTable()"
|
|
|
- style="font-size: 24px; color: rgb(37, 193, 99); cursor: pointer"
|
|
|
+ style="font-size: 24px; color: rgb(37, 193, 99); cursor: pointer" v-loading="nodeInfoTableLoad"
|
|
|
></i>
|
|
|
</div>
|
|
|
<el-table :data="nodeInfoTable" border style="width: 100%" height="400">
|
|
@@ -1550,6 +1550,8 @@ export default {
|
|
|
|
|
|
return {
|
|
|
loding: false,
|
|
|
+ nodeInfoTableLoad: false,
|
|
|
+
|
|
|
formDatass: [],
|
|
|
editElementFormTag: false,
|
|
|
ImportElementdata: {},
|
|
@@ -2757,8 +2759,13 @@ export default {
|
|
|
nodeId: this.jiedianId,
|
|
|
type: 0,
|
|
|
};
|
|
|
+ this.nodeInfoTableLoad = true;
|
|
|
refrehPram(prams).then((res) => {
|
|
|
console.log(res);
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.nodeInfoTableLoad = false;
|
|
|
+ this.$message.success("刷新成功");
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
delNodeInfo(key, obj) {
|