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