Explorar o código

Merge branch 'master' of http://120.26.64.82:3000/BFFE/CABaggageData2.0

zhongxiaoyu %!s(int64=2) %!d(string=hai) anos
pai
achega
55c7067ba1
Modificáronse 1 ficheiros con 19 adicións e 17 borrados
  1. 19 17
      src/components/Table/index.vue

+ 19 - 17
src/components/Table/index.vue

@@ -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('查询节点失败')
         }