tabulation.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="all">
  3. <view class="row">
  4. <view class="row1">
  5. <view class="shu">30</view>
  6. <view class="wenben">{{$t('huiyuan.a1')}}</view>
  7. </view>
  8. <view class="row2">
  9. <view class="shu">30</view>
  10. <view class="wenben">{{$t('huiyuan.a2')}}</view>
  11. </view>
  12. </view>
  13. <view class="rowT">
  14. <view class="row1">
  15. <view class="shu">30</view>
  16. <view class="wenben">{{$t('huiyuan.a3')}}</view>
  17. </view>
  18. <view class="row2">
  19. <view class="shu">30</view>
  20. <view class="wenben">{{$t('huiyuan.a4')}}</view>
  21. </view>
  22. </view>
  23. <view class="list" v-for="item in 12" :key="item">
  24. <view class="top">
  25. <view class="nc">123****032@qq.com</view>
  26. <view class="">
  27. <image class="img" src="/static/shouye/huiyuan.png" mode=""></image>
  28. </view>
  29. </view>
  30. <view class="center" @click="navX">
  31. <view class="sj">2023.05.05 15:00</view>
  32. <view class="xq">{{$t('huiyuan.a5')}}</view>
  33. <view class="">
  34. <image class="ima" src="/static/icon/jt.png" mode=""></image>
  35. </view>
  36. </view>
  37. <view class="xian"></view>
  38. <view class="last">
  39. <view class="left">{{$t('huiyuan.a6')}}:</view>
  40. <view class="leftT">5000U</view>
  41. <view class="right">{{$t('huiyuan.a7')}}:</view>
  42. <view class="rightT">50</view>
  43. </view>
  44. </view>
  45. <view class="bto">
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. };
  54. },
  55. onLoad() {
  56. uni.setNavigationBarTitle({
  57. title: this.$t("tab.b1"),
  58. });
  59. },
  60. methods: {
  61. navX() {
  62. uni.navigateTo({
  63. url: '/pages/jump/details'
  64. })
  65. },
  66. }
  67. }
  68. </script>
  69. <style lang="scss">
  70. .all {
  71. width: 750rpx;
  72. min-height: 100vh;
  73. background-color: $page-color-base;
  74. }
  75. .row {
  76. display: flex;
  77. justify-content: space-between;
  78. }
  79. .rowT {
  80. display: flex;
  81. justify-content: space-between;
  82. margin-top: 20rpx;
  83. }
  84. .row1 {
  85. width: 325rpx;
  86. height: 168rpx;
  87. background: #191A1F;
  88. border-radius: 10rpx;
  89. margin-left: 36rpx;
  90. }
  91. .wenben {
  92. height: 27rpx;
  93. font-size: 28rpx;
  94. font-weight: 500;
  95. color: #FFFFFF;
  96. margin-left: 107rpx;
  97. margin-top: 22rpx;
  98. }
  99. .shu {
  100. width: 52rpx;
  101. height: 35rpx;
  102. font-size: 46rpx;
  103. font-weight: bold;
  104. color: #FEB041;
  105. margin-left: 136rpx;
  106. margin-top: 43rpx;
  107. }
  108. .row2 {
  109. width: 325rpx;
  110. height: 168rpx;
  111. background: #191A1F;
  112. border-radius: 10rpx;
  113. margin-right: 36rpx;
  114. }
  115. .list {
  116. width: 684rpx;
  117. height: 262rpx;
  118. background: #191A1F;
  119. border-radius: 16rpx;
  120. margin-left: 36rpx;
  121. margin-top: 25rpx;
  122. }
  123. .top {
  124. display: flex;
  125. justify-content: start;
  126. }
  127. .nc {
  128. height: 31rpx;
  129. font-size: 32rpx;
  130. font-weight: bold;
  131. color: #FFFFFF;
  132. margin-left: 35rpx;
  133. padding-top: 40rpx;
  134. }
  135. .img {
  136. width: 100rpx;
  137. height: 32rpx;
  138. margin-left: 20rpx;
  139. margin-top: 46rpx;
  140. object-fit: cover;
  141. }
  142. .center {
  143. display: flex;
  144. justify-content: start;
  145. }
  146. .sj {
  147. margin-left: 34rpx;
  148. margin-top: 25rpx;
  149. height: 22rpx;
  150. float: length($list: 231rpx);
  151. font-size: 28rpx;
  152. font-weight: 500;
  153. color: #999999;
  154. }
  155. .xq {
  156. margin-top: 25rpx;
  157. margin-left: 290rpx;
  158. height: 26rpx;
  159. font-size: 28rpx;
  160. font-family: PingFang SC;
  161. font-weight: 500;
  162. color: #999999;
  163. float: length($list: 54rpx);
  164. }
  165. .ima {
  166. width: 13rpx;
  167. height: 19rpx;
  168. margin-top: 35rpx;
  169. margin-left: 20rpx;
  170. }
  171. .xian {
  172. width: 618rpx;
  173. height: 1rpx;
  174. background: #DDE1EB;
  175. opacity: 0.2;
  176. margin-left: 20rpx;
  177. margin-top: 30rpx;
  178. }
  179. .last {
  180. display: flex;
  181. justify-content: start;
  182. }
  183. .left {
  184. font-size: 28rpx;
  185. font-family: PingFang SC;
  186. font-weight: 500;
  187. color: #999999;
  188. margin-left: 36rpx;
  189. margin-top: 30rpx;
  190. }
  191. .leftT {
  192. font-size: 28rpx;
  193. font-weight: 500;
  194. color: #b98134;
  195. margin-top: 30rpx;
  196. }
  197. .right {
  198. font-size: 28rpx;
  199. font-weight: 500;
  200. color: #999999;
  201. margin-left: 200rpx;
  202. margin-top: 30rpx;
  203. }
  204. .rightT {
  205. font-size: 28rpx;
  206. font-weight: 500;
  207. color: #ffffff;
  208. margin-top: 30rpx;
  209. }
  210. </style>