wangxy il y a 1 mois
Parent
commit
922857d385
1 fichiers modifiés avec 23 ajouts et 0 suppressions
  1. 23 0
      pages/client/my/cameraTest.vue

+ 23 - 0
pages/client/my/cameraTest.vue

@@ -0,0 +1,23 @@
+<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>