解决问题接待中有空白区域
This commit is contained in:
@@ -17,7 +17,11 @@
|
||||
<text class="function-name">服务中</text>
|
||||
<text class="function-desc"></text>
|
||||
</view>
|
||||
|
||||
<view class="function-item" @click="openReceptionInProgress">
|
||||
<view class="function-icon">⏳</view>
|
||||
<text class="function-name">接待中</text>
|
||||
<text class="function-desc"></text>
|
||||
</view>
|
||||
<view class="function-item" @click="openReceptionTab('tag')">
|
||||
<view class="function-icon">🗂️</view>
|
||||
<text class="function-name">标签管理</text>
|
||||
@@ -76,6 +80,15 @@ export default {
|
||||
},
|
||||
});
|
||||
},
|
||||
/** 独立「接待中」列表页(与接待页内「服务中」列表同源逻辑) */
|
||||
openReceptionInProgress() {
|
||||
uni.navigateTo({
|
||||
url: '/pages-subpackage/furniture_reception/reception_in_progress',
|
||||
fail: () => {
|
||||
uni.showToast({ title: '跳转接待中失败', icon: 'none' });
|
||||
},
|
||||
});
|
||||
},
|
||||
openCustomerTab(tab) {
|
||||
const url = `/pages-subpackage/furniture_customer/furniture_customer?tab=${tab}`;
|
||||
uni.navigateTo({ url });
|
||||
|
||||
Reference in New Issue
Block a user