card.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="page">
  3. <u-tabs :font-size='28' :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  4. <view class="list" v-if="current==0">
  5. <view class="box u-flex">
  6. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  7. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  8. <view class="title">
  9. 高手控局:中国历史中的 殿堂级处世智慧电
  10. </view>
  11. <view class="time">
  12. 有效期至:2023/12/23 23:59
  13. </view>
  14. </view>
  15. <view class="button" style="margin-left: 36rpx;">
  16. 立即使用
  17. </view>
  18. </view>
  19. <view class="box u-flex">
  20. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  21. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  22. <view class="title">
  23. 高手控局:中国历史中的 殿堂级处世智慧电
  24. </view>
  25. <view class="time">
  26. 有效期至:2023/12/23 23:59
  27. </view>
  28. </view>
  29. <view class="">
  30. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="list" v-if="current==1">
  35. <view class="box u-flex">
  36. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  37. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  38. <view class="title">
  39. 高手控局:中国历史中的 殿堂级处世智慧电
  40. </view>
  41. <view class="time">
  42. 有效期至:2023/12/23 23:59
  43. </view>
  44. </view>
  45. <view class="button" style="margin-left: 36rpx;">
  46. 立即使用
  47. </view>
  48. </view>
  49. <view class="box u-flex">
  50. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  51. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  52. <view class="title">
  53. 高手控局:中国历史中的 殿堂级处世智慧电
  54. </view>
  55. <view class="time">
  56. 有效期至:2023/12/23 23:59
  57. </view>
  58. </view>
  59. <view class="">
  60. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="list" v-if="current==2">
  65. <view class="box u-flex">
  66. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  67. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  68. <view class="title">
  69. 高手控局:中国历史中的 殿堂级处世智慧电
  70. </view>
  71. <view class="time">
  72. 有效期至:2023/12/23 23:59
  73. </view>
  74. </view>
  75. <view class="button" style="margin-left: 36rpx;">
  76. 立即使用
  77. </view>
  78. </view>
  79. <view class="box u-flex">
  80. <image src="/static/logo.png" style="width:120rpx;height: 160rpx;" mode=""></image>
  81. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  82. <view class="title">
  83. 高手控局:中国历史中的 殿堂级处世智慧电
  84. </view>
  85. <view class="time">
  86. 有效期至:2023/12/23 23:59
  87. </view>
  88. </view>
  89. <view class="">
  90. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </template>
  96. <script>
  97. export default {
  98. data() {
  99. return {
  100. list: [{
  101. name: '全部'
  102. }, {
  103. name: '生效中'
  104. }, {
  105. name: '已过期',
  106. }],
  107. current: 0
  108. };
  109. },
  110. methods: {
  111. change(index) {
  112. this.current = index;
  113. }
  114. }
  115. }
  116. </script>
  117. <style lang="scss">
  118. .title {
  119. font-size: 28rpx;
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: 400;
  122. color: #333333;
  123. }
  124. .time {
  125. font-size: 20rpx;
  126. font-family: SFPro, SFPro;
  127. font-weight: 400;
  128. color: #222222;
  129. margin-top: 40rpx;
  130. opacity: 0.6;
  131. }
  132. .button {
  133. width: 144rpx;
  134. height: 64rpx;
  135. background: #06A971;
  136. border-radius: 8rpx;
  137. line-height: 64rpx;
  138. text-align: center;
  139. font-size: 26rpx;
  140. font-family: PingFangSC, PingFang SC;
  141. font-weight: 500;
  142. color: #FFFFFF;
  143. }
  144. ::v-deep .u-tab-bar {
  145. background-color: #06A971 !important;
  146. }
  147. ::v-deep .u-tab-item {
  148. color: #222 !important
  149. }
  150. .box {
  151. margin-top: 20rpx;
  152. padding: 40rpx 20rpx 40rpx 28rpx;
  153. width: 694rpx;
  154. height: 240rpx;
  155. background: #FFFFFF;
  156. background: url('../../static/images/module.png') no-repeat;
  157. background-size: cover;
  158. }
  159. .list {
  160. padding: 0 28rpx;
  161. }
  162. .page {
  163. background: #F6F6F6;
  164. min-height: 100vh;
  165. }
  166. </style>