调整添加商品页面商户分类加载
This commit is contained in:
parent
fb5d5c811f
commit
496e50848b
@ -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) {
|
||||
|
@ -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: '请选择主图',
|
||||
|
@ -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;
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user