新增标签打印

This commit is contained in:
gyq
2024-06-18 18:36:53 +08:00
parent 1439f12ee5
commit c86fff9691
14 changed files with 690 additions and 110 deletions

View File

@@ -21,16 +21,20 @@
</div>
</div>
<!-- 更多 -->
<more ref="moreref"></more>
<more ref="moreref" @openCall="openCall"></more>
<!-- 叫号 -->
<callNumber ref="callNumberRef" />
</template>
<script setup>
import { ref } from 'vue'
import { useRoute } from 'vue-router'
import more from '@/components/more.vue'
import callNumber from './callNumber.vue'
const route = useRoute()
const moreref = ref(null)
const callNumberRef = ref(null)
const menus = ref([
{
label: '收银',
@@ -68,6 +72,10 @@ const menus = ref([
icon: 'SwitchButton'
}
])
function openCall() {
callNumberRef.value.show()
}
</script>
<style scoped lang="scss">