| 1234567891011121314151617181920212223 |
- <template>
- <view>
- <!-- 导航区域 -->
- <customNavbarVue title="摄像头确认" :show-back-btn="true" @back="handleBack"></customNavbarVue>
-
- <zhuapaiConfrimVue></zhuapaiConfrimVue>
-
- <button @click="handleBack">确定</button>
- </view>
- </template>
- <script setup>
- import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
- import zhuapaiConfrimVue from "@/components/zhuapaiConfirm/index.vue";
-
- function handleBack() {
- uni.navigateBack();
- }
- </script>
- <style>
- </style>
|