index.vue 645 Bytes
<!--
 * @Date: 2026-01-07 20:41:49
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2026-01-08 15:58:10
 * @FilePath: /xyxBooking-weapp/src/pages/offlineBookingCode/index.vue
 * @Description: 线下预约码页面
-->
<template>
    <view class="offline-booking-code-page"></view>
</template>

<script setup>
import { onMounted } from 'vue'
import Taro from '@tarojs/taro'
import { useGo } from '@/hooks/useGo'

const go = useGo();

onMounted(() => {
    Taro.nextTick(() => {
        go('/pages/offlineBookingList/index')
    })
});

</script>

<style lang="less">
.offline-booking-code-page {
    min-height: 100vh;
}
</style>