From 496e50848b21ae37a5427cc24a950f99c0fd9789 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Wed, 31 May 2023 13:31:31 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B7=BB=E5=8A=A0=E5=95=86?= =?UTF-8?q?=E5=93=81=E9=A1=B5=E9=9D=A2=E5=95=86=E6=88=B7=E5=88=86=E7=B1=BB?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/api.js | 4 ++-- pages/product/addGoods/index.vue | 10 ++++++---- pages/product/storeClassification/index.vue | 4 +--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/api/api.js b/api/api.js index 17cf5dc..3daf575 100644 --- a/api/api.js +++ b/api/api.js @@ -26,8 +26,8 @@ export function seachBarCodeAPI(data) { * 获取里海云仓商品 * */ -export function getProductSpuAPI(id) { - return request.get(`product/spu/cloud_merchant/${id}`, {}, { noAuth: true }); +export function getProductSpuAPI(id, param) { + return request.get(`product/spu/cloud_merchant/${id}`, param, { noAuth: true }); } //获取云仓库店铺id export function get_cloud_shop(street_code) { diff --git a/pages/product/addGoods/index.vue b/pages/product/addGoods/index.vue index 9ffd245..5351da5 100644 --- a/pages/product/addGoods/index.vue +++ b/pages/product/addGoods/index.vue @@ -411,6 +411,7 @@ if (this.step == 2) { this.secoundModel = !this.secoundModel; } + this.initClasiffy(); }, watch: { @@ -431,6 +432,10 @@ }, methods: { // 获取数据 + async initClasiffy() { + //获取商户分类 + this.merchantClassification = (await storeClassifyLst(this.merId)).data; + }, async initData() { if (getStorage('addGoodsFormData')) { this.setFormData = getStorage('addGoodsFormData'); @@ -438,9 +443,6 @@ } // 获取品牌 this.brand = (await categoryBrandlist(this.merId)).data; - // 获取商户分类 - this.merchantClassification = (await storeClassifyLst(this.merId)).data; - console.log( this.merchantClassification = (await storeClassifyLst(this.merId)).data); // 获取平台分类 this.platformClassificationData = (await categoryList(this.merId)).data; // 数据回显 @@ -611,7 +613,6 @@ // 获取已选择得店铺数据 handleGetSelectStore(item) { this.setFormData.mer_cate_id = item.map(val => val.store_category_id); - console.log(item); this.setFormData.mer_cate_name = item.map(val => val.cate_name).join(','); this.$refs.select_store.close(); }, @@ -772,6 +773,7 @@ // 开始下一步 handleNextStep() { + console.log(this.setFormData.setSpecificaValue) let canJumpFlag = true; let requireData = { image: '请选择主图', diff --git a/pages/product/storeClassification/index.vue b/pages/product/storeClassification/index.vue index ec2944b..6357823 100644 --- a/pages/product/storeClassification/index.vue +++ b/pages/product/storeClassification/index.vue @@ -41,10 +41,9 @@ export default { }, onLoad(options) { this.mer_id = options.mer_id - this.getStoreClassification() }, onShow: function() { - + this.getStoreClassification() }, methods: { deleteItem(item,index) { @@ -80,7 +79,6 @@ export default { }); storeClassifyLst(this.mer_id).then( res => { - console.log(res); uni.hideLoading(); that.storeClassList = res.data; },