|
@@ -523,33 +523,36 @@ export default {
|
|
|
},
|
|
|
//服务列表-启用
|
|
|
handleStart () {
|
|
|
- if (this.dataObj.deployNodeID && this.dataType == 'edit') {
|
|
|
- this.dataObj.runState = 1
|
|
|
- this.controlService(1, this.dataObj)
|
|
|
- } else if (this.dataType == 'add' && this.arrs[this.arrs.length - 1].deployNodeID) {
|
|
|
- this.arrs[this.arrs.length - 1].runState = 1
|
|
|
- this.controlService(1, this.arrs[this.arrs.length - 1])
|
|
|
- }
|
|
|
- else {
|
|
|
- this.$message.error('请先添加当前服务后再操作')
|
|
|
- }
|
|
|
+ this.$message.warning('开发中')
|
|
|
+ // if (this.dataObj.deployNodeID && this.dataType == 'edit') {
|
|
|
+ // this.dataObj.runState = 1
|
|
|
+ // this.controlService(1, this.dataObj)
|
|
|
+ // } else if (this.dataType == 'add' && this.arrs[this.arrs.length - 1].deployNodeID) {
|
|
|
+ // this.arrs[this.arrs.length - 1].runState = 1
|
|
|
+ // this.controlService(1, this.arrs[this.arrs.length - 1])
|
|
|
+ // }
|
|
|
+ // else {
|
|
|
+ // this.$message.error('请先添加当前服务后再操作')
|
|
|
+ // }
|
|
|
},
|
|
|
//服务列表-停用
|
|
|
handleStop () {
|
|
|
- if (this.dataObj.deployNodeID && this.dataType == 'edit') {
|
|
|
- this.dataObj.runState = 0
|
|
|
- this.controlService(0, this.dataObj)
|
|
|
- } else if (this.dataType == 'add' && this.arrs[this.arrs.length - 1].deployNodeID) {
|
|
|
- this.arrs[this.arrs.length - 1].runState = 0
|
|
|
- this.controlService(0, this.arrs[this.arrs.length - 1])
|
|
|
- }
|
|
|
- else {
|
|
|
- this.$message.error('请先添加当前服务后再操作')
|
|
|
- }
|
|
|
+ this.$message.warning('开发中')
|
|
|
+ // if (this.dataObj.deployNodeID && this.dataType == 'edit') {
|
|
|
+ // this.dataObj.runState = 0
|
|
|
+ // this.controlService(0, this.dataObj)
|
|
|
+ // } else if (this.dataType == 'add' && this.arrs[this.arrs.length - 1].deployNodeID) {
|
|
|
+ // this.arrs[this.arrs.length - 1].runState = 0
|
|
|
+ // this.controlService(0, this.arrs[this.arrs.length - 1])
|
|
|
+ // }
|
|
|
+ // else {
|
|
|
+ // this.$message.error('请先添加当前服务后再操作')
|
|
|
+ // }
|
|
|
},
|
|
|
//服务列表-重置
|
|
|
handleRest (item) {
|
|
|
- this.controlService(0, item)
|
|
|
+ this.$message.warning('开发中')
|
|
|
+ // this.controlService(0, item)
|
|
|
},
|
|
|
//服务列表-保存
|
|
|
async handleSave () {
|