index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view>
  3. <view class="title">人脸识别成功</view>
  4. <view class="img">
  5. <!-- <image src=""></image> -->
  6. </view>
  7. <view class="reload">
  8. <text>Messis <u-icon class="ic" name="reload" color="#8C8C8C" size="40rpx"></u-icon></text>
  9. </view>
  10. <view class="submit">
  11. <u-button
  12. shape="circle"
  13. type="primary"
  14. text="确定"
  15. color="#7B5DF0"
  16. style="width: 550rpx;"
  17. ></u-button>
  18. </view>
  19. <view class="skip">
  20. <text @click="skip">跳过</text>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. },
  30. methods: {
  31. //跳过
  32. skip(){
  33. console.log('跳过')
  34. },
  35. }
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. page{
  40. /* background-color: #D9D9D9; */
  41. // background-color: #F5F5F5 !important;
  42. }
  43. .title{
  44. margin-top: 126rpx;
  45. text-align: center;
  46. color: rgba(0,0,0,0.90);
  47. font-size: 40rpx;
  48. }
  49. .img{
  50. width: 280rpx;
  51. height: 280rpx;
  52. border-radius: 100px;
  53. margin: 0 auto;
  54. margin-top: 40rpx;
  55. margin-bottom: 46rpx;
  56. overflow: hidden;
  57. background-color: #ccc;
  58. image{
  59. width: 100%;
  60. height: 100%;
  61. }
  62. }
  63. .reload{
  64. color:#6241D5;
  65. font-size: 40rpx;
  66. display: flex;
  67. justify-content: center;
  68. text{
  69. display: inline-block;
  70. position: relative;
  71. .ic{
  72. position: absolute;
  73. top: 10rpx;
  74. right: -60rpx;
  75. }
  76. }
  77. }
  78. .submit{
  79. margin-top: 580rpx;
  80. }
  81. .skip{
  82. text-align: center;
  83. margin-top: 26rpx;
  84. font-size: 32rpx;
  85. color: rgba(0,0,0,0.90);
  86. }
  87. </style>