## 删除死点

This commit is contained in:
zhangheng 2025-09-11 13:34:24 +08:00 committed by cabbage
parent df46562d6e
commit c853b24207
1 changed files with 6 additions and 4 deletions

View File

@ -22,7 +22,6 @@
</div> </div>
<!-- 表格 --> <!-- 表格 -->
<div class="main">
<div class="maintable"> <div class="maintable">
<el-table <el-table
:data="tableData" :data="tableData"
@ -53,7 +52,6 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
</div> </div>
</div>
<!-- 分页 --> <!-- 分页 -->
<pagination <pagination
@ -121,8 +119,12 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}).then(() => { }).then(() => {
spe.getdeleteDeadLockDel({memberCode:memberCode}).then(() => { spe.getdeleteDeadLockDel({memberCode:memberCode}).then((res) => {
this.$message.success("删除成功"); if(res.code == 200){
this.$message.success("删除成功");
}else{
this.$message.error(res.msg);
}
this.getSearch(); this.getSearch();
}); });
}); });