优化扫码叫号

This commit is contained in:
gyq
2024-06-27 13:42:35 +08:00
parent 89b078daae
commit 105ad4ee52
7 changed files with 41 additions and 13 deletions

View File

@@ -3,7 +3,8 @@
<div class="cart_wrap card">
<div class="header">
<div class="left">
<el-input placeholder="搜索订单" v-model="tableData.proName"></el-input>
<el-input placeholder="搜索订单" v-model="tableData.proName" @focus="
global.updateData(false)" @blur="global.updateData(true)"></el-input>
<el-select v-model="tableData.status" placeholder="订单状态">
<el-option v-for="item in statusList" :key="item.value" :value="item.value"
:label="item.label"></el-option>
@@ -83,6 +84,9 @@ import refundDialog from './components/refundDialog.vue'
import { useUser } from "@/store/user.js"
const store = useUser()
import { useGlobal } from '@/store/global.js'
const global = useGlobal()
const scanGroupRef = ref(null)
const refundDialogRef = ref(null)