card.vue 4.3 KB

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