This commit is contained in:
曹辉 2023-01-16 14:34:25 +08:00
parent 2ae7131505
commit 3900b1dfea

View File

@ -489,11 +489,10 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
console.log(row);
const ids = row.id || this.ids;
this.$modal
.confirm(
'是否确认删除商品分类名称为"' + row.goodsCategoryName + '"的数据?'
)
.confirm("是否确认删除?")
.then(function () {
return delGoodsCategory(ids);
})