123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view>
- <viewfinder :phoneType="state.phoneType" @confirmReturn="confirmReturn"></viewfinder>
- </view>
- </template>
-
- <script setup lang="ts">
- import viewfinder from "../../components/viewfinder.vue"
- import {
- onLoad
- } from "@dcloudio/uni-app";
- import {
- reactive
- } from "vue";
- const state = reactive({
- phoneType: 1,
- allParams: {}
- })
- onLoad((option : any) => {
- state.phoneType = option.phoneType;
- state.allParams = option.allParams;
- });
- const confirmReturn = (val) => {
- // uni.navigateTo({
- // url: ``
- // })
- uni.navigateBack({
- delta: 1
- })
- console.log("val", val)
- }
- </script>
-
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
-
- .text-area {
- display: flex;
- justify-content: center;
- }
-
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|