优化扫码叫号

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

@@ -6,7 +6,8 @@
</el-button>
</div>
<div class="content">
<el-input type="textarea" :rows="6" v-model="remark" placeholder="请输入备注"></el-input>
<el-input type="textarea" :rows="6" v-model="remark" placeholder="请输入备注" @focus="
global.updateData(false)" @blur="global.updateData(true)"></el-input>
</div>
<div class="footer_wrap">
<div class="btn">
@@ -18,6 +19,8 @@
<script setup>
import { ref } from 'vue'
import { useGlobal } from '@/store/global.js'
const global = useGlobal()
const emit = defineEmits(['success'])
const dialogVisible = ref(false)