discountCard.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <template>
  2. <view class="box">
  3. <view class="tab">
  4. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">可使用</view>
  5. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">可赠送</view>
  6. </view>
  7. <view class="main" :class="{mainActive:tabIndex==1}">
  8. <view class="okBox" v-if="tabIndex==1">
  9. <view class="tabLine2" :class="{tabActive2:tabIndex2==0}" @click="tabClick2(0)">可使用</view>
  10. <view class="tabLine2" :class="{tabActive2:tabIndex2==2}" @click="tabClick2(2)">已使用</view>
  11. <view class="tabLine2" :class="{tabActive2:tabIndex2==1}" @click="tabClick2(1)">已过期</view>
  12. </view>
  13. <view class="itemBg" v-for="(item,index) in currentList">
  14. <view class="itemTop">
  15. <view class="leftB">
  16. <view class="use" v-if="item.state==0">¥<span class="use2">{{item.actMoney}}</span></view>
  17. <view class="used" v-else>¥<span class="used2">{{item.actMoney}}</span></view>
  18. <view class="tiaojian">{{item.whereMoney!==0?'满'+item.whereMoney+'元可用':'满任意金额可用'}}</view>
  19. </view>
  20. <view class="centerB">
  21. <view class="name">{{item.actName}}</view>
  22. <view class="time" v-if="item.startTime">有效期:{{item.startTime.slice(0,10)}}-{{item.endTime.slice(0,10)}}</view>
  23. <view class="time" v-else>有效期:</view>
  24. </view>
  25. <view class="rightB">
  26. <image src="../../static/img/icon_yishiyong.png" mode="" v-if="item.state==2&&tabIndex==1" class="couponlineTopImg"></image>
  27. <image src="../../static/img/icon_guoqi.png" mode="" v-if="item.state==1&&tabIndex==1" class="couponlineTopImg"></image>
  28. <view class="shareB" v-if="item.shareQty>0&&tabIndex==2" @click.stop="">
  29. <image src="../../static/img/icon_share.png" alt="" class="couponlineshareImg"></image>
  30. <view class="keshare">赠送给好友</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="itemBottom">
  35. <view v-if="tabIndex==1">可用次数:{{item.avaQty}}</view>
  36. <view v-else>可分享次数:{{item.shareQty}}</view>
  37. <view @click="goDetail(item.id)">查看详情 ></view>
  38. </view>
  39. </view>
  40. <!-- 无数据空白页 -->
  41. <nodata v-if="items.length==0"></nodata>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import nodata from '@/components/nodata/nodata.vue'
  47. export default {
  48. components: {
  49. nodata
  50. },
  51. computed: {
  52. currentList () {
  53. if (this.tabIndex == 2) {
  54. return this.items.filter(item => ~~item.shareQty > 0)
  55. } else {
  56. return this.items.filter(item => item.state == this.tabIndex2)
  57. }
  58. }
  59. },
  60. data() {
  61. return {
  62. tabIndex: 1,
  63. tabIndex2: 0,
  64. items: [],
  65. }
  66. },
  67. onLoad(opt) {
  68. this.tabIndex = opt.num;
  69. this.myOrderCoupon()
  70. },
  71. onShow() {
  72. console.log(this.tabIndex)
  73. this.myOrderCoupon()
  74. },
  75. methods: {
  76. goDetail(id) {
  77. uni.navigateTo({
  78. url: 'discountCardDetail?id=' + id
  79. })
  80. },
  81. tabClick(num) {
  82. this.tabIndex = num;
  83. },
  84. tabClick2(num) {
  85. this.tabIndex2 = num;
  86. },
  87. myOrderCoupon() {
  88. uni.showLoading({
  89. title: '加载中'
  90. })
  91. this.$http('opencoupon/listCoupon', {
  92. // page: this.page,
  93. // limit: 10,
  94. }, 'POST').then(res => {
  95. uni.hideLoading();
  96. // var list = res.data.Items
  97. var list = res.data
  98. // 处理 undefined和null转为空白字符串
  99. // list.forEach((item, index) => {
  100. // for (const key in item) {
  101. // item[key] = this.$praseStrEmpty(item[key])
  102. // }
  103. // })
  104. this.items = list
  105. })
  106. },
  107. }
  108. }
  109. </script>
  110. <style scoped>
  111. .box {
  112. min-height: 100vh;
  113. background: #F4F5F7;
  114. }
  115. .tab {
  116. background: #FFFFFF;
  117. display: flex;
  118. justify-content: space-around;
  119. line-height: 92rpx;
  120. position: fixed;
  121. width: calc(100vw - 48rpx);
  122. padding-left: 24rpx;
  123. padding-right: 24rpx;
  124. height: 92rpx;
  125. z-index: 11;
  126. }
  127. .tabLine {
  128. font-size: 30rpx;
  129. text-align: center;
  130. }
  131. .tabActive {
  132. color: #FF0000;
  133. border-bottom: 4rpx solid #FF0000;
  134. }
  135. .main {
  136. padding-top: 92rpx;
  137. padding-bottom: 20rpx;
  138. background-color: #F4F5F7;
  139. }
  140. .mainActive{
  141. padding-top: 184rpx;
  142. padding-bottom: 20rpx;
  143. background-color: #F4F5F7;
  144. }
  145. .okBox {
  146. background: #FFFFFF;
  147. display: flex;
  148. justify-content: flex-start;
  149. align-items: center;
  150. border-top: 1rpx solid #EEEEEE;
  151. position: fixed;
  152. width: 100vw;
  153. padding-left: 24rpx;
  154. padding-right: 24rpx;
  155. margin-top: -93rpx;
  156. height: 92rpx;
  157. z-index: 11;
  158. }
  159. .tabLine2 {
  160. font-size: 28rpx;
  161. text-align: center;
  162. width: 144rpx;
  163. height: 56rpx;
  164. background: #F4F5F7;
  165. border-radius: 28rpx;
  166. line-height: 56rpx;
  167. margin-right: 24rpx;
  168. }
  169. .tabActive2 {
  170. background-color: rgba(240, 59, 59, 0.06);
  171. border-radius: 28rpx;
  172. background-color: 0.06;
  173. font-size: 28rpx;
  174. color: #FF0000;
  175. width: 144rpx;
  176. height: 56rpx;
  177. line-height: 56rpx;
  178. margin-right: 24rpx;
  179. }
  180. .itemBg {
  181. margin: 20rpx 24rpx 0rpx;
  182. background-color: #FFFFFF;
  183. border-radius: 10rpx;
  184. padding: 40rpx 20rpx 20rpx;
  185. }
  186. .itemTop {
  187. display: flex;
  188. justify-content: space-between;
  189. margin-bottom: 40rpx;
  190. }
  191. .use {
  192. font-size: 26rpx;
  193. color: #FF0000;
  194. }
  195. .use2 {
  196. font-size: 40rpx;
  197. font-weight: 500;
  198. color: #FF0000;
  199. line-height: 56rpx;
  200. }
  201. .used {
  202. font-size: 26rpx;
  203. color: #666666;
  204. }
  205. .used2 {
  206. font-size: 40rpx;
  207. font-weight: 500;
  208. color: #666666;
  209. line-height: 56rpx;
  210. }
  211. .rightB{
  212. position: relative;
  213. }
  214. .tiaojian{
  215. font-size: 24rpx;
  216. color: #666666;
  217. }
  218. .name{
  219. font-size: 30rpx;
  220. font-weight: 500;
  221. color: #333333;
  222. line-height: 42rpx;
  223. }
  224. .time{
  225. font-size: 24rpx;
  226. color: #666666;
  227. margin-top: 15rpx;
  228. }
  229. .itemBottom {
  230. display: flex;
  231. justify-content: space-between;
  232. padding-top: 20rpx;
  233. border-top: 1rpx solid #EEEEEE;
  234. font-size: 24rpx;
  235. color: #999999;
  236. line-height: 33rpx;
  237. }
  238. .couponlineTopImg{
  239. width: 118rpx;
  240. height: 86rpx;
  241. position: absolute;
  242. top: -24rpx;
  243. right: 0;
  244. }
  245. .shareB{
  246. display: flex;
  247. flex-direction: column;
  248. align-items: center;
  249. }
  250. .couponlineshareImg{
  251. width: 44rpx;
  252. height: 44rpx;
  253. }
  254. .keshare{
  255. font-size: 22rpx;
  256. color: #666666;
  257. margin-top: 15rpx;
  258. }
  259. </style>