This commit is contained in:
weipengfei 2023-12-09 18:48:08 +08:00
parent fef405ed9c
commit c38a156943
2 changed files with 9 additions and 6 deletions

View File

@ -86,9 +86,12 @@ const loadOrderList = (pramas) => {
})
}
const titleText = ref('')
onMounted(() => {
// loadOrderList();
mitt.on('showBusinesses2', (e) => {
titleText.value = e.name;
pages.value.type = e.type;
isShow.value = !isShow.value;
})
@ -100,7 +103,7 @@ onMounted(() => {
<div class="bus" v-if="isShow">
<div class="c-list-box">
<div class="c-l-top">
<div class="title">订单列表</div>
<div class="title">{{ titleText }} - 订单列表</div>
<div class="close" @click="isShow = false">关闭</div>
</div>
<dv-scroll-board

View File

@ -27,8 +27,8 @@ const initInfo = () => {
})
}
const clickItem = (type) => {
mitt.emit('showBusinesses2', { type: type })
const clickItem = (type, name) => {
mitt.emit('showBusinesses2', { type: type, name: name })
}
onMounted(() => {
@ -44,17 +44,17 @@ onMounted(() => {
</div>
<div class="border"></div>
<div class="btn">
<div class="c-b" @click.stop="clickItem(1)">
<div class="c-b" @click.stop="clickItem(1, '待取货')">
<div class="text">
待取货({{ appStore.delivery.pending_order_count }})
</div>
</div>
<div class="c-b" @click.stop="clickItem(2)">
<div class="c-b" @click.stop="clickItem(2, '配送中')">
<div class="text">
配送中({{ appStore.delivery.delivering_order_count }})
</div>
</div>
<div class="c-b" @click.stop="clickItem(3)">
<div class="c-b" @click.stop="clickItem(3, '已完成')">
<div class="text">
已完成({{ appStore.delivery.finished_order_count }})
</div>