调整添加商品页面商户分类加载

This commit is contained in:
luofei 2023-05-31 13:31:31 +08:00
parent fb5d5c811f
commit 496e50848b
3 changed files with 9 additions and 9 deletions

View File

@ -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) {

View File

@ -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: '请选择主图',

View File

@ -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;
},