1.订单重复打印问题

2.订单增加时间筛选
3.订单增加桌号展示
This commit is contained in:
gyq
2024-07-16 16:23:49 +08:00
parent 4543854d0a
commit aa25c6be3b
7 changed files with 33 additions and 223 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="demo_tabs_box">
<div class="demo_tabs_box" v-loading="props.loading">
<div class="demo_tabs_boxitem" v-for="(item, index) in ordereData.list" :key="index"
@click="clickitemboxshow(item)">
<!-- <div class="demo_tabs_boxitem_oneyt" v-if="item.status == 'refund' && item.orderType == 'return'">已退款</div> -->
@@ -53,6 +53,10 @@ const props = defineProps({
names: []
}]
}
},
loading: {
type: Boolean,
default: false
}
})
const emit = defineEmits(["emititemboxshow"])