diff --git a/src/views/Workshop/profile.vue b/src/views/Workshop/profile.vue index c00a2f7..8340c91 100644 --- a/src/views/Workshop/profile.vue +++ b/src/views/Workshop/profile.vue @@ -172,10 +172,11 @@ const onScroll = (e: Event) => { // 打开customer选择时关闭profile弹窗 如果不是点击confirem关闭则重新打开profile弹窗 let isCustomerOnly = false const handleShowPopup = (flag: boolean, customer: boolean) => { + console.log(flag,customer) // customer: 是否是顾客页面只展示customer选择弹窗 isCustomerOnly = customer showSwitchCustomerPopup.value = flag - if (isCustomerOnly) return + if (props.isCustomer) return show.value = !flag if (flag) { loadCustomers(true) @@ -310,7 +311,7 @@ defineExpose({ open, close, handleShowPopup }) >