tabulation.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. methods: {
  56. navX() {
  57. uni.navigateTo({
  58. url: '/pages/details/details'
  59. })
  60. },
  61. }
  62. }
  63. </script>
  64. <style lang="scss">
  65. .all {
  66. width: 750rpx;
  67. // height: 100%;
  68. min-height: 100vh;
  69. background-color: #000000;
  70. }
  71. .row {
  72. display: flex;
  73. justify-content: space-between;
  74. }
  75. .rowT {
  76. display: flex;
  77. justify-content: space-between;
  78. margin-top: 20rpx;
  79. }
  80. .row1 {
  81. width: 325rpx;
  82. height: 168rpx;
  83. background: #191A1F;
  84. border-radius: 10rpx;
  85. margin-left: 36rpx;
  86. }
  87. .wenben {
  88. height: 27rpx;
  89. font-size: 28rpx;
  90. font-family: PingFang SC;
  91. font-weight: 500;
  92. color: #FFFFFF;
  93. margin-left: 107rpx;
  94. margin-top: 22rpx;
  95. }
  96. .shu {
  97. width: 52rpx;
  98. height: 35rpx;
  99. font-size: 46rpx;
  100. font-family: PingFang SC;
  101. font-weight: bold;
  102. color: #FEB041;
  103. margin-left: 136rpx;
  104. margin-top: 43rpx;
  105. }
  106. .row2 {
  107. width: 325rpx;
  108. height: 168rpx;
  109. background: #191A1F;
  110. border-radius: 10rpx;
  111. margin-right: 36rpx;
  112. }
  113. .list {
  114. width: 684rpx;
  115. height: 262rpx;
  116. background: #191A1F;
  117. border-radius: 16rpx;
  118. margin-left: 36rpx;
  119. margin-top: 25rpx;
  120. }
  121. .top {
  122. display: flex;
  123. justify-content: start;
  124. }
  125. .nc {
  126. height: 31rpx;
  127. font-size: 32rpx;
  128. font-family: PingFang SC;
  129. font-weight: bold;
  130. color: #FFFFFF;
  131. margin-left: 35rpx;
  132. padding-top: 40rpx;
  133. }
  134. .img {
  135. width: 100rpx;
  136. height: 32rpx;
  137. margin-left: 20rpx;
  138. margin-top: 46rpx;
  139. object-fit: cover;
  140. }
  141. .center {
  142. display: flex;
  143. justify-content: start;
  144. }
  145. .sj {
  146. margin-left: 34rpx;
  147. margin-top: 25rpx;
  148. height: 22rpx;
  149. float: length($list: 231rpx);
  150. font-size: 28rpx;
  151. font-family: PingFang SC;
  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. // background: #FFFFFF;
  169. margin-top: 35rpx;
  170. margin-left: 20rpx;
  171. }
  172. .xian {
  173. width: 618rpx;
  174. height: 1rpx;
  175. background: #DDE1EB;
  176. opacity: 0.2;
  177. margin-left: 20rpx;
  178. margin-top: 30rpx;
  179. }
  180. .last {
  181. display: flex;
  182. //
  183. justify-content: start;
  184. }
  185. .left {
  186. font-size: 28rpx;
  187. font-family: PingFang SC;
  188. font-weight: 500;
  189. color: #999999;
  190. margin-left: 36rpx;
  191. margin-top: 30rpx;
  192. }
  193. .leftT {
  194. font-size: 28rpx;
  195. font-family: PingFang SC;
  196. font-weight: 500;
  197. color: #b98134;
  198. // margin-left: 10rpx;
  199. margin-top: 30rpx;
  200. }
  201. .right {
  202. font-size: 28rpx;
  203. font-family: PingFang SC;
  204. font-weight: 500;
  205. color: #999999;
  206. margin-left: 200rpx;
  207. margin-top: 30rpx;
  208. }
  209. .rightT {
  210. font-size: 28rpx;
  211. font-family: PingFang SC;
  212. font-weight: 500;
  213. color: #ffffff;
  214. margin-top: 30rpx;
  215. }
  216. </style>