xrtd.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view class="content">
  3. <view class="top-bg">
  4. <image src="../../static/img/xrtd-bg.png" mode=""></image>
  5. </view>
  6. <view class="sq-tj">
  7. <image src="../../static/img/xrtd-log.png" mode=""></image>
  8. <view class="sq-tj-tit">
  9. 申请条件
  10. </view>
  11. <view class="sq-tj-info">
  12. 注册为新人
  13. </view>
  14. </view>
  15. <view class="sq-tj" style="margin-top: 0;margin-bottom: 62rpx;">
  16. <image src="../../static/img/xrtd-log.png" mode=""></image>
  17. <view class="sq-tj-tit">
  18. 申请说明
  19. </view>
  20. <view class="sq-tj-info">
  21. 身份证名下六单,可提前三分钟抢购
  22. </view>
  23. </view>
  24. <view class="btn-list flex">
  25. <view class="look-btn" @click="lookJl()">
  26. 查看申请记录
  27. </view>
  28. <view class="sub-btn">
  29. 提交申请
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. methods: {
  41. // 查看申请记录
  42. lookJl() {
  43. this.navTo('/pages/user/sqjl')
  44. },
  45. // 提交申请
  46. subSq() {
  47. },
  48. navTo(url) {
  49. uni.navigateTo({
  50. url
  51. })
  52. }
  53. }
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. .top-bg {
  58. width: 750rpx;
  59. height: 623rpx;
  60. image {
  61. width: 750rpx;
  62. height: 623rpx;
  63. }
  64. }
  65. .sq-tj {
  66. position: relative;
  67. width: 690rpx;
  68. height: 190rpx;
  69. background: #FFFFFF;
  70. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  71. border-radius: 20rpx;
  72. margin: -160rpx auto 50rpx;
  73. image {
  74. width: 224rpx;
  75. height: 68rpx;
  76. position: absolute;
  77. top: 0;
  78. left: 0;
  79. right: 0;
  80. margin: auto;
  81. }
  82. .sq-tj-tit {
  83. width: 224rpx;
  84. height: 68rpx;
  85. font-size: 34rpx;
  86. font-family: PingFang SC;
  87. font-weight: 500;
  88. color: #FFFFFF;
  89. line-height: 68rpx;
  90. text-align: center;
  91. position: absolute;
  92. top: 0;
  93. left: 0;
  94. right: 0;
  95. margin: auto;
  96. }
  97. .sq-tj-info {
  98. font-size: 30rpx;
  99. font-family: PingFang SC;
  100. font-weight: 500;
  101. color: #0C1732;
  102. line-height: 42rpx;
  103. padding-top: 100rpx;
  104. text-align: center;
  105. }
  106. }
  107. .btn-list {
  108. justify-content: space-around;
  109. font-size: 32rpx;
  110. font-family: PingFang SC;
  111. font-weight: bold;
  112. color: #375AFE;
  113. line-height: 83rpx;
  114. text-align: center;
  115. .look-btn {
  116. width: 294rpx;
  117. height: 83rpx;
  118. background: #FFFFFF;
  119. border: 2rpx solid #375AFE;
  120. border-radius: 10rpx;
  121. }
  122. .sub-btn {
  123. width: 294rpx;
  124. height: 83rpx;
  125. background: linear-gradient(0deg, rgba(60, 237, 237, 0.99), #04B8FF, #375AFE);
  126. border-radius: 10rpx;
  127. color: #fff;
  128. }
  129. }
  130. </style>