bookingCode.vue
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-16 11:27:36
* @FilePath: /xysBooking/src/views/bookingCode.vue
* @Description: 文件描述
-->
<template>
<div class="booking-code-page">
<qrCode></qrCode>
<div class="warning">
<p><van-icon name="warning-o" /> 温馨提示</p>
<p>一人一码,扫码或识别身份证成功后进入</p>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import { Cookies, $, _, axios, storeToRefs, mainStore, Toast, useTitle } from '@/utils/generatePackage.js'
//import { } from '@/utils/generateModules.js'
//import { } from '@/utils/generateIcons.js'
//import { } from '@/composables'
import qrCode from '@/components/qrCode';
const $route = useRoute();
const $router = useRouter();
useTitle($route.meta.title);
</script>
<style lang="less" scoped>
.booking-code-page {
padding: 1rem;
.warning {
text-align: center;
color: #A67939;
}
}
</style>