From 93cc41f557d5a9162818619e92013913a7058613 Mon Sep 17 00:00:00 2001 From: dt_2916866708 <> Date: Mon, 15 Jan 2024 11:15:59 +0800 Subject: [PATCH] 12 --- src/api/product/productAttr.js | 25 + src/router/index.js | 6 + src/views/product/brand/index.vue | 134 + src/views/product/productAdd/index.vue | 4 +- src/views/product/productAdd/newIndex.vue | 2661 +++++++++-------- src/views/product/productAttr/addAttr.vue | 36 +- .../productAttr/components/attrList.vue | 7 +- src/views/product/productAttr/index.vue | 28 +- 8 files changed, 1548 insertions(+), 1353 deletions(-) create mode 100644 src/views/product/brand/index.vue diff --git a/src/api/product/productAttr.js b/src/api/product/productAttr.js index 91a9c15..db7a5ef 100644 --- a/src/api/product/productAttr.js +++ b/src/api/product/productAttr.js @@ -1,6 +1,24 @@ import request from '@/utils/request' var service_name = 'oil-mall' export default { + brandGetByPage() { + return request({ + url: `/${service_name}/mallProductBrands/getByPage`, + method: 'get', + }) + }, + getAllAttributesType() { + return request({ + url: `/${service_name}/mallProductAttributesType/getAllAttributesType`, + method: 'get', + }) + }, + getClassificationTree() { + return request({ + url: `/${service_name}/mallProductClassification/getClassificationTree`, + method: 'get', + }) + }, classifySave(page) { return request({ url: `/${service_name}/mallProductClassification/save`, @@ -70,6 +88,13 @@ delete(page) { data: page }) }, + typeUpdate(page) { + return request({ + url: `/${service_name}/mallProductAttributes/update`, + method: 'post', + data: page + }) + }, update(page) { return request({ url: `/${service_name}/mallProductAttributesType/update`, diff --git a/src/router/index.js b/src/router/index.js index d43ff99..3fe06e8 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -36,6 +36,12 @@ export const constantRoutes = [{ name: 'productAdd', meta: { title: '添加商品', icon: 'iconkongzhitai', affix: true } }, + { + path: '/brand', + component: () => import('@/views/product/brand/index'), + name: 'brand', + meta: { title: '商品品牌', icon: 'iconkongzhitai', affix: true } + }, { path: '/productClassify', component: () => import('@/views/product/productClassify/index'), diff --git a/src/views/product/brand/index.vue b/src/views/product/brand/index.vue new file mode 100644 index 0000000..77c9cab --- /dev/null +++ b/src/views/product/brand/index.vue @@ -0,0 +1,134 @@ + + + + + \ No newline at end of file diff --git a/src/views/product/productAdd/index.vue b/src/views/product/productAdd/index.vue index e9e0177..b7ef27c 100644 --- a/src/views/product/productAdd/index.vue +++ b/src/views/product/productAdd/index.vue @@ -717,7 +717,7 @@ - + diff --git a/src/views/product/productAdd/newIndex.vue b/src/views/product/productAdd/newIndex.vue index c43f9e5..0a1faca 100644 --- a/src/views/product/productAdd/newIndex.vue +++ b/src/views/product/productAdd/newIndex.vue @@ -1,723 +1,664 @@