diff --git a/src/views/system/goodsCategory/index.vue b/src/views/system/goodsCategory/index.vue index de618e5..4584667 100644 --- a/src/views/system/goodsCategory/index.vue +++ b/src/views/system/goodsCategory/index.vue @@ -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); })