cameraTest.vue 582 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="phone-sztqr-page">
  3. <!-- 导航区域 -->
  4. <customNavbarVue title="摄像头确认" :show-back-btn="true" @back="handleBack"></customNavbarVue>
  5. <zhuapaiConfrimVue></zhuapaiConfrimVue>
  6. <button type="default" class="phone-green-btn zp-qr-btn" @click="handleBack">确定</button>
  7. </view>
  8. </template>
  9. <script setup>
  10. import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
  11. import zhuapaiConfrimVue from "@/components/zhuapaiConfirm/index.vue";
  12. function handleBack() {
  13. uni.navigateBack();
  14. }
  15. </script>
  16. <style>
  17. </style>