123456789101112131415161718192021222324 |
- <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>
|