index.vue 488 B

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