redirect_fac.vue 576 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="container">
  3. <view class="box">
  4. 人脸校验成功
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. userInfo: null
  13. }
  14. },
  15. onLoad(options) {
  16. console.log(options, 'redirect')
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. .container {
  24. width: 100vw;
  25. height: 100vh;
  26. overflow: hidden;
  27. background-size: contain;
  28. position: relative;
  29. .box {
  30. padding: 30rpx;
  31. padding-top: 200rpx;
  32. word-break: break-all;
  33. }
  34. }
  35. </style>