解决问题接待中有空白区域

This commit is contained in:
zhonghua.li
2026-04-18 14:33:16 +08:00
parent d18a546915
commit b5f3a1b2f7
22 changed files with 443 additions and 15 deletions

View File

@@ -22,6 +22,11 @@
<text class="function-name">服务中</text>
<text class="function-desc"></text>
</view>
<view class="function-item" @click="quickJumpReceptionInProgress">
<view class="function-icon"></view>
<text class="function-name">接待中</text>
<text class="function-desc"></text>
</view>
<view class="function-item" @click="quickJumpReceptionTab('tag')">
<view class="function-icon">🏷</view>
<text class="function-name">标签管理</text>
@@ -211,6 +216,18 @@ export default {
},
});
},
quickJumpReceptionInProgress() {
uni.navigateTo({
url: '/pages-subpackage/furniture_reception/reception_in_progress',
fail: (err) => {
console.error('[AiAnalysisDashboardBody] 快捷跳转接待中页失败:', err);
uni.showToast({
title: '跳转失败,请稍后重试',
icon: 'none',
});
},
});
},
quickJumpCustomerTab(tabKey) {
const allowedTabs = ['service', 'customer'];
if (!allowedTabs.includes(tabKey)) {