Browse Source

提示信息调整

SJA-develop
liwei 3 years ago
parent
commit
f5cadbe6ce
1 changed files with 16 additions and 4 deletions
  1. +16
    -4
      src/views/etcd/index.vue

+ 16
- 4
src/views/etcd/index.vue View File

@ -127,7 +127,10 @@ export default {
service_path:item.service_path
}).then(({code, data})=>{
this.loading=false;
this.getList();
if(code==200){
this.msgSuccess("启动成功,请稍后刷新列表数据");
this.getList();
}
})
},
//
@ -138,7 +141,10 @@ export default {
service_path:item.service_path
}).then(({code, data})=>{
this.loading=false;
this.getList();
if(code==200){
this.msgSuccess("暂停成功,请稍后刷新列表数据");
this.getList();
}
})
},
//
@ -149,7 +155,10 @@ export default {
service_path:item.service_path
}).then(({code, data})=>{
this.loading=false;
this.getList();
if(code==200){
this.msgSuccess("恢复成功,请稍后刷新列表数据");
this.getList();
}
})
},
//
@ -160,7 +169,10 @@ export default {
service_path:item.service_path
}).then(({code, data})=>{
this.loading=false;
this.getList();
if(code==200){
this.msgSuccess("停止成功,请稍后刷新列表数据");
this.getList();
}
})
},
//


Loading…
Cancel
Save