This commit is contained in:
2025-02-27 16:28:46 +08:00
16 changed files with 909 additions and 85 deletions

View File

@@ -92,7 +92,7 @@
<script>
import productApi from "@/api/product/index";
import paoductCategoryApi from "@/api/product/productclassification";
import { ElMessage } from "element-plus";
export default {
props: {
// 是否禁用分类
@@ -133,6 +133,10 @@ export default {
// 确定选商品
confirmHandle() {
let res = this.$refs.table.selection;
console.log(res);
if (!res) {
return ElMessage.error("请选择商品");
}
this.$emit("success", res);
this.close();
},