1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <template>
| <view class="auth">
| <view class="auth-logo">
| <image src="https://faceid-h5-1254418846.file.myqcloud.com/mp_verify_sdk/images/ecard/logo.png" />
| </view>
| <view class="title">
| 即将进入"eID数字身份"小程序
| </view>
| <view class="button-area">
| <button @click='handleStart' >
| 确认进入
| </button>
| </view>
| </view>
| </template>
|
| <script>
| import index from "./index";
| export default index;
| </script>
|
| <style>
| @import url('../index.css');
| </style>
|
|