licp
2024-04-19 74c58b88f878c4beafcedf4f75712bbdef4f7a6a
src/components/tool/value-table.vue
@@ -1067,14 +1067,13 @@
      // 批量删除
      batchDelete(){
        if(this.multipleSelection&&this.multipleSelection.length>0){
          // this.delUrl
          this.$confirm('是否删除选中的数据?', "警告", {
                     confirmButtonText: "确定",
                     cancelButtonText: "取消",
                     type: "warning"
                  }).then(() => {
                     this.$axios.post(this.delUrl, {
                        id: this.multipleSelection.map(item => item.id).join(',')
                        ids: JSON.stringify(this.multipleSelection.map(item => item.id))
                     }).then(res => {
                        if (res.code === 201) {
                           return