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

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) { export function getProductSpuAPI(id, param) {
return request.get(`product/spu/cloud_merchant/${id}`, {}, { noAuth: true }); return request.get(`product/spu/cloud_merchant/${id}`, param, { noAuth: true });
} }
//获取云仓库店铺id //获取云仓库店铺id
export function get_cloud_shop(street_code) { export function get_cloud_shop(street_code) {

View File

@ -411,6 +411,7 @@
if (this.step == 2) { if (this.step == 2) {
this.secoundModel = !this.secoundModel; this.secoundModel = !this.secoundModel;
} }
this.initClasiffy();
}, },
watch: { watch: {
@ -431,6 +432,10 @@
}, },
methods: { methods: {
// //
async initClasiffy() {
//
this.merchantClassification = (await storeClassifyLst(this.merId)).data;
},
async initData() { async initData() {
if (getStorage('addGoodsFormData')) { if (getStorage('addGoodsFormData')) {
this.setFormData = getStorage('addGoodsFormData'); this.setFormData = getStorage('addGoodsFormData');
@ -438,9 +443,6 @@
} }
// //
this.brand = (await categoryBrandlist(this.merId)).data; 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; this.platformClassificationData = (await categoryList(this.merId)).data;
// //
@ -611,7 +613,6 @@
// //
handleGetSelectStore(item) { handleGetSelectStore(item) {
this.setFormData.mer_cate_id = item.map(val => val.store_category_id); 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.setFormData.mer_cate_name = item.map(val => val.cate_name).join(',');
this.$refs.select_store.close(); this.$refs.select_store.close();
}, },
@ -772,6 +773,7 @@
// //
handleNextStep() { handleNextStep() {
console.log(this.setFormData.setSpecificaValue)
let canJumpFlag = true; let canJumpFlag = true;
let requireData = { let requireData = {
image: '请选择主图', image: '请选择主图',

View File

@ -41,10 +41,9 @@ export default {
}, },
onLoad(options) { onLoad(options) {
this.mer_id = options.mer_id this.mer_id = options.mer_id
this.getStoreClassification()
}, },
onShow: function() { onShow: function() {
this.getStoreClassification()
}, },
methods: { methods: {
deleteItem(item,index) { deleteItem(item,index) {
@ -80,7 +79,6 @@ export default {
}); });
storeClassifyLst(this.mer_id).then( storeClassifyLst(this.mer_id).then(
res => { res => {
console.log(res);
uni.hideLoading(); uni.hideLoading();
that.storeClassList = res.data; that.storeClassList = res.data;
}, },