diff --git a/buyer/src/App.vue b/buyer/src/App.vue index 71dbc4bc..ff215123 100644 --- a/buyer/src/App.vue +++ b/buyer/src/App.vue @@ -7,7 +7,6 @@ diff --git a/buyer/src/components/Search.vue b/buyer/src/components/Search.vue index 7d6b5471..b8ee208f 100644 --- a/buyer/src/components/Search.vue +++ b/buyer/src/components/Search.vue @@ -2,7 +2,7 @@
diff --git a/manager/src/views/goods/goods-manage/parameter.vue b/manager/src/views/goods/goods-manage/parameter.vue index 5291af29..dee7a669 100644 --- a/manager/src/views/goods/goods-manage/parameter.vue +++ b/manager/src/views/goods/goods-manage/parameter.vue @@ -116,7 +116,6 @@ import { } from "@/api/goods"; export default { name: "categoryParams", - components: {}, data() { return { /** 分类ID */ @@ -127,19 +126,17 @@ export default { modalType: 0, /** 添加或编辑标题 */ modalTitle: "", - modalTitle1: "", /** 参数添加或编辑弹出框 */ dialogParamsVisible: false, /** 参数组添加或编辑弹出框 */ dialogParamsGroupVisible: false, - /** 参数ID **/ - paramId: "", //参数表单 paramForm: {}, /** 参数值 **/ ops:{ options: [] }, + // 参数表单 paramGroupForm: {}, /** 添加、编辑参数 规格 */ formValidate: { @@ -161,6 +158,7 @@ export default { }, }, methods: { + // 初始化数据 init() { this.getDataList(); }, @@ -207,6 +205,7 @@ export default { this.modalTitle = "修改参数组"; this.dialogParamsGroupVisible = true; }, + // 添加参数 handleAddParamsGroup() { this.paramGroupForm = { @@ -279,6 +278,7 @@ export default { } }); }, + // 获取分类列表 getDataList() { getCategoryParamsListData(this.categoryId).then((res) => { if (res.success) { diff --git a/manager/src/views/goods/goods-manage/spec.vue b/manager/src/views/goods/goods-manage/spec.vue index e55533df..a0b5370a 100644 --- a/manager/src/views/goods/goods-manage/spec.vue +++ b/manager/src/views/goods/goods-manage/spec.vue @@ -1,27 +1,25 @@