|
@@ -808,23 +808,25 @@ export default {
|
|
|
dataContent: [serviceID]
|
|
|
})
|
|
|
if (Number(code) === 0) {
|
|
|
- console.log(listValues)
|
|
|
- // if (listValues.length) {
|
|
|
- // Promise.all(
|
|
|
- // listValues.map(node =>
|
|
|
- // request({
|
|
|
- // url: `${node.serviceURL}/${operate}`,
|
|
|
- // method: 'post'
|
|
|
- // })
|
|
|
- // )
|
|
|
- // ).then(results => {
|
|
|
- // if (results.every(result => Number(result.code) === 0)) {
|
|
|
- // this.$message.success('操作成功')
|
|
|
- // } else {
|
|
|
- // this.$message.error('操作失败')
|
|
|
- // }
|
|
|
- // })
|
|
|
- // }
|
|
|
+ if (listValues.length) {
|
|
|
+ Promise.all(
|
|
|
+ listValues.map(node =>
|
|
|
+ request({
|
|
|
+ url: `${node.serviceURL}${operate}`,
|
|
|
+ method: 'post',
|
|
|
+ data: {
|
|
|
+ serviceId: serviceID
|
|
|
+ }
|
|
|
+ })
|
|
|
+ )
|
|
|
+ ).then(results => {
|
|
|
+ if (results.every(result => Number(result.code) === 0)) {
|
|
|
+ this.$message.success('操作成功')
|
|
|
+ } else {
|
|
|
+ this.$message.error('操作失败')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$message.error('查询节点失败')
|
|
|
}
|