Merge branch 'master' of https://gitea.lihaink.cn/weipengfei/purchase-let
This commit is contained in:
commit
3534ca8114
|
@ -191,6 +191,9 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 用户选择的门店信息
|
||||||
|
const storeInfo = JSON.parse(uni.getStorageSync('STORE_INFO'))
|
||||||
|
|
||||||
/*商品列表滚动隐藏头部导航 */
|
/*商品列表滚动隐藏头部导航 */
|
||||||
const instance = getCurrentInstance(); // 获取组件实例
|
const instance = getCurrentInstance(); // 获取组件实例
|
||||||
const targetHeight = ref(0)
|
const targetHeight = ref(0)
|
||||||
|
@ -266,8 +269,10 @@
|
||||||
page_size: 25,
|
page_size: 25,
|
||||||
name: '',
|
name: '',
|
||||||
order: '',
|
order: '',
|
||||||
store_id: '2'
|
store_id: storeInfo.id
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// console.log(JSON.parse(uni.getStorageSync('STORE_INFO')))
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
const goodList = ref([]);
|
const goodList = ref([]);
|
||||||
const getGoodList = (loadmore = false) => {
|
const getGoodList = (loadmore = false) => {
|
||||||
|
|
Loading…
Reference in New Issue