card.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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="item.goods.image" 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="item.goods.image" 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="item.goods.image" 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. if (uni.getStorageSync('token')) {
  82. this.getMyCertificate()
  83. this.Certificate()
  84. this.unCertificate()
  85. }
  86. },
  87. methods: {
  88. use(id) {
  89. this.$u.post('/api/certificate/useCertificate', {
  90. id: id
  91. }).then(res => {
  92. this.$u.toast(res.msg)
  93. setTimeout(() => {
  94. uni.navigateTo({
  95. url: '/pages/index/bookinfo?id=' + id
  96. })
  97. }, 800)
  98. })
  99. },
  100. change(index) {
  101. this.current = index;
  102. },
  103. getMyCertificate() {
  104. this.$u.post('/api/certificate/getMyCertificate', {
  105. is_expire: ''
  106. }).then(res => {
  107. this.MyCertificate = res.data.data
  108. console.log('MyCertificate', this.MyCertificate);
  109. })
  110. },
  111. Certificate() {
  112. this.$u.post('/api/certificate/getMyCertificate', {
  113. is_expire: 1
  114. }).then(res => {
  115. console.log(res);
  116. this.certificate = res.data.data
  117. })
  118. },
  119. unCertificate() {
  120. this.$u.post('/api/certificate/getMyCertificate', {
  121. is_expire: 0
  122. }).then(res => {
  123. console.log(res);
  124. this.uncertificate = res.data.data
  125. })
  126. },
  127. }
  128. }
  129. </script>
  130. <style lang="scss">
  131. .title {
  132. font-size: 28rpx;
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 400;
  135. color: #333333;
  136. }
  137. .time {
  138. font-size: 20rpx;
  139. font-family: SFPro, SFPro;
  140. font-weight: 400;
  141. color: #222222;
  142. margin-top: 40rpx;
  143. opacity: 0.6;
  144. }
  145. .button {
  146. width: 144rpx;
  147. height: 64rpx;
  148. background: #06A971;
  149. border-radius: 8rpx;
  150. line-height: 64rpx;
  151. text-align: center;
  152. font-size: 26rpx;
  153. font-family: PingFangSC, PingFang SC;
  154. font-weight: 500;
  155. color: #FFFFFF;
  156. }
  157. ::v-deep .u-tab-bar {
  158. background-color: #06A971 !important;
  159. }
  160. ::v-deep .u-tab-item {
  161. color: #222 !important
  162. }
  163. .box {
  164. margin-top: 20rpx;
  165. padding: 40rpx 20rpx 40rpx 28rpx;
  166. width: 694rpx;
  167. height: 240rpx;
  168. background: #FFFFFF;
  169. background: url('../../static/images/module.png') no-repeat;
  170. background-size: cover;
  171. }
  172. .list {
  173. padding: 0 28rpx;
  174. }
  175. .page {
  176. background: #F6F6F6;
  177. min-height: 100vh;
  178. }
  179. </style>