renzheng.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view class="container">
  3. <view class="re-succ-box">
  4. <image class="re-succ-img" src="../../static/img/rz-top.png"></image>
  5. <view class="re-succ-tit">认证提醒</view>
  6. <view class="re-succ-tip">您尚未认证身份,请立即前往身份认证</view>
  7. <view class="re-succ-btn" @click="goBack()">确认前往</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. type: 1
  16. };
  17. },
  18. onLoad(opt) {
  19. if (opt.type) {
  20. this.type = opt.type;
  21. }
  22. },
  23. methods: {
  24. goBack() {
  25. uni.navigateTo({
  26. url: '/pages/user/vip'
  27. });
  28. }
  29. }
  30. };
  31. </script>
  32. <style lang="scss">
  33. page {
  34. height: 100%;
  35. }
  36. .container {
  37. height: 100%;
  38. background: #ffffff;
  39. .line-top {
  40. width: 750rpx;
  41. height: 20rpx;
  42. background: #f5f5f5;
  43. }
  44. .re-succ-box {
  45. padding-top: 170rpx;
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. .re-succ-img {
  50. margin-left: 30rpx;
  51. width: 406rpx;
  52. height: 380rpx;
  53. display: block;
  54. }
  55. .re-succ-tit {
  56. margin-top: 38rpx;
  57. font-size: 32rpx;
  58. font-family: PingFang SC;
  59. font-weight: 500;
  60. color: #333333;
  61. }
  62. .re-succ-tip {
  63. font-size: 28rpx;
  64. font-family: PingFang SC;
  65. font-weight: 500;
  66. color: #666666;
  67. margin-top: 20rpx;
  68. }
  69. .re-succ-btn {
  70. margin-top: 80rpx;
  71. width: 301rpx;
  72. height: 78rpx;
  73. background: #ecd0a9;
  74. border-radius: 10rpx;
  75. font-size: 30rpx;
  76. font-family: PingFang SC;
  77. font-weight: 500;
  78. color: #9a5e19;
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. }
  83. }
  84. }
  85. </style>