删除分类完善

This commit is contained in:
SjS 2025-04-03 20:52:48 +08:00
parent 912b664082
commit 022f91ba7e

View File

@ -146,9 +146,10 @@
</template> </template>
<script> <script>
import {getArticleCategory, listArticleCategory} from "@/api/bst/articleCategory.js"; import {getArticleCategory, listArticleCategory,delArticleCategory,addArticleCategory} from "@/api/bst/articleCategory.js";
import Treeselect from "@riophae/vue-treeselect"; import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css"; import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import {delArea} from "@/api/bst/area";
export default { export default {
name: "ArticleCategory", name: "ArticleCategory",
@ -311,13 +312,14 @@
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal.confirm('是否确认删除文章分类编号为"' + row.id + '"的数据项?').then(function() { const ids = row.id || this.ids;
return delArticleCategory(row.id); this.$modal.confirm('是否确认删除运营区编号为"' + ids + '"的数据项?').then(function() {
return delArticleCategory(ids);
}).then(() => { }).then(() => {
this.getList(); this.getList();
this.$modal.msgSuccess("删除成功"); this.$modal.msgSuccess("删除成功");
}).catch(() => {}); }).catch(() => {});
} },
} }
}; };
</script> </script>