little bug
This commit is contained in:
parent
3534ca8114
commit
95a6f2b809
|
@ -192,7 +192,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// 用户选择的门店信息
|
// 用户选择的门店信息
|
||||||
const storeInfo = JSON.parse(uni.getStorageSync('STORE_INFO'))
|
let STORE_INFO = uni.getStorageSync('STORE_INFO');
|
||||||
|
if (STORE_INFO)
|
||||||
|
STORE_INFO = JSON.parse(STORE_INFO)
|
||||||
|
|
||||||
/*商品列表滚动隐藏头部导航 */
|
/*商品列表滚动隐藏头部导航 */
|
||||||
const instance = getCurrentInstance(); // 获取组件实例
|
const instance = getCurrentInstance(); // 获取组件实例
|
||||||
|
@ -269,7 +271,7 @@
|
||||||
page_size: 25,
|
page_size: 25,
|
||||||
name: '',
|
name: '',
|
||||||
order: '',
|
order: '',
|
||||||
store_id: storeInfo.id
|
store_id: STORE_INFO.id || ''
|
||||||
})
|
})
|
||||||
|
|
||||||
// console.log(JSON.parse(uni.getStorageSync('STORE_INFO')))
|
// console.log(JSON.parse(uni.getStorageSync('STORE_INFO')))
|
||||||
|
@ -421,9 +423,8 @@
|
||||||
productLogApi({
|
productLogApi({
|
||||||
product_id: item.product_id,
|
product_id: item.product_id,
|
||||||
cate_id: item.cate_id,
|
cate_id: item.cate_id,
|
||||||
store_id: uni.getStorageSync('STORE_INFO').id || ''
|
store_id: STORE_INFO.id || ''
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
const changeGood = (data) => { // 确定选择商品重量
|
const changeGood = (data) => { // 确定选择商品重量
|
||||||
showGoodPopup.value = false;
|
showGoodPopup.value = false;
|
||||||
|
|
Loading…
Reference in New Issue