监听如果切换了门店,则刷新列表
This commit is contained in:
@ -70,11 +70,19 @@
|
||||
const list = ref<Array<any>>([]) // 茶艺师列表
|
||||
const keywords = ref<string>('')
|
||||
const orderStatus = ref<string>('')
|
||||
// const canReset = ref<boolean>(false) // 避免onShow重复加载
|
||||
|
||||
|
||||
// tab
|
||||
const tab = ref<string>('all')
|
||||
|
||||
// onShow(() => {
|
||||
// if (canReset.value) {
|
||||
// list.value = []
|
||||
// getMescroll().resetUpScroll();
|
||||
// }
|
||||
// canReset.value = true
|
||||
// })
|
||||
|
||||
onLoad((args) => {
|
||||
uni.$on('refreshOrderList', () => {
|
||||
list.value = []
|
||||
@ -158,6 +166,20 @@
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
* 监听默认店铺变化,刷新列表
|
||||
*/
|
||||
watch(
|
||||
() => useStore.defaultStore.id,
|
||||
(newId, oldId) => {
|
||||
if (newId !== oldId) {
|
||||
// 这里写刷新逻辑,比如重置列表并重新请求
|
||||
list.value = []
|
||||
getMescroll().resetUpScroll()
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user