diff --git a/src/pages/store/room-manage.vue b/src/pages/store/room-manage.vue index b50a89c..f380f0a 100644 --- a/src/pages/store/room-manage.vue +++ b/src/pages/store/room-manage.vue @@ -44,7 +44,7 @@ - {{ RoomManage.handleGetStatusConfig(room.status).text }} @@ -150,6 +150,15 @@ } const orderStatus = ref('') const list = ref>([]) // 茶室列表 + const canReset = ref(false) // 避免onShow重复加载 + + onShow(() => { + if (canReset.value) { + list.value = [] + getMescroll().resetUpScroll(); + } + canReset.value = true + }) const RoomManage = { /**