解决问题接待中有空白区域
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user