discountCard.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <template>
  2. <view class="content">
  3. <view class="topTab">
  4. <!-- tab -->
  5. <view class="tab">
  6. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">未使用</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">已使用</view>
  8. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已过期</view>
  9. </view>
  10. </view>
  11. <!-- 列表 -->
  12. <view class="itemContent">
  13. <view v-for="(item,index) in itemData" :key="index">
  14. <view class="item">
  15. <image src="../../static/img/icon_yishiyong.png" mode="" class="stateImg" v-if="tabIndex==2">
  16. </image>
  17. <image src="../../static/img/icon_yiguoqi.png" mode="" class="stateImg" v-if="tabIndex==3"></image>
  18. <!-- 第一块 -->
  19. <view class="topView">
  20. <view class="leftView">
  21. <view class="moneyView">
  22. <view>¥</view>
  23. <view class="money">{{item.ActMoney}}</view>
  24. </view>
  25. <view class="condition" v-if="item.WhereMoney != 0">满{{item.WhereMoney}}元可用</view>
  26. <view class="condition" v-else>满任意金额可用</view>
  27. </view>
  28. <view class="rightView">
  29. <view class="cardName">{{item.ActName}}</view>
  30. <!-- 时间截取 -->
  31. <view class="valid">有效期:{{item.StartTime.slice(0,item.StartTime.length-8)}}至
  32. {{item.EndTime.slice(0,item.EndTime.length-8)}}
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 第二快 -->
  37. <view class="bottomView">
  38. <view class="shopNamesView">适用门店:{{item.shopNames}}</view>
  39. <view @click="goDiscountDetail(item)">查看详情</view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- 上拉 加载更多 -->
  45. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  46. <!-- 无数据空白页 -->
  47. <nodata v-if="itemData.length==0"></nodata>
  48. </view>
  49. </template>
  50. <script>
  51. import nodata from '../../components/nodata/nodata.vue'
  52. export default {
  53. components: {
  54. nodata,
  55. },
  56. data() {
  57. return {
  58. itemData: [],
  59. page: 1,
  60. noMoreShow: false,
  61. tabIndex: 1,
  62. }
  63. },
  64. onLoad(opt) {
  65. this.page = 1
  66. this.getItemData()
  67. },
  68. methods: {
  69. tabClick(num) {
  70. this.tabIndex = num;
  71. this.page = 1;
  72. this.getItemData()
  73. },
  74. goDiscountDetail(item) {
  75. uni.navigateTo({
  76. url: 'discountDetail?couponId=' + item.ID,
  77. })
  78. },
  79. getItemData() {
  80. uni.showLoading({
  81. title: '加载中'
  82. })
  83. var usedState = ''
  84. if (this.tabIndex == 1) {
  85. usedState = 0
  86. }
  87. if (this.tabIndex == 2) {
  88. usedState = 1
  89. }
  90. var expireState = ''
  91. if (this.tabIndex == 3) {
  92. expireState = 1
  93. }
  94. let url = 'worldKeepCar/keepCarMy/listTCouponMemberPage',
  95. params = {
  96. page: this.page,
  97. limit: 20,
  98. usedState: usedState,
  99. expireState: expireState,
  100. }
  101. this.$http(url, params, 'GET').then(res => {
  102. uni.hideLoading();
  103. var list = res.data.Items
  104. // 处理 undefined和null转为空白字符串
  105. list.forEach((item, index) => {
  106. for (const key in item) {
  107. item[key] = this.$praseStrEmpty(item[key])
  108. }
  109. })
  110. if (this.page == 1) {
  111. this.itemData = list
  112. } else {
  113. this.itemData = this.itemData.concat(list)
  114. }
  115. if (list.length < 10) {
  116. this.noMoreShow = false
  117. } else {
  118. this.noMoreShow = true
  119. }
  120. })
  121. },
  122. },
  123. // 下拉刷新 上拉加载更多
  124. onPullDownRefresh() {
  125. this.page = 1
  126. this.getItemData()
  127. //this.getItemData()
  128. setTimeout(function() {
  129. uni.stopPullDownRefresh();
  130. }, 1000);
  131. },
  132. onReachBottom() {
  133. this.page++;
  134. this.getItemData()
  135. },
  136. }
  137. </script>
  138. <style scoped>
  139. .content {
  140. background: #F4F5F7;
  141. min-height: 100vh;
  142. }
  143. .topTab {
  144. background: #FFFFFF;
  145. position: fixed;
  146. width: 100%;
  147. height: 92rpx;
  148. z-index: 99;
  149. }
  150. .tab {
  151. background: #FFFFFF;
  152. display: flex;
  153. justify-content: space-around;
  154. line-height: 90rpx;
  155. height: 90rpx;
  156. width: 100%;
  157. }
  158. .tabLine {
  159. text-align: center;
  160. }
  161. .tabActive {
  162. color: #FF4F00;
  163. border-bottom: 4rpx solid #FF4F00;
  164. }
  165. .itemContent {
  166. padding: 100rpx 20rpx 24rpx;
  167. }
  168. .item {
  169. margin: 20rpx 0rpx;
  170. background-color: #FFFFFF;
  171. border-radius: 10rpx;
  172. }
  173. .stateImg {
  174. width: 118rpx;
  175. height: 86rpx;
  176. position: absolute;
  177. right: 20rpx;
  178. margin-right: 20rpx;
  179. }
  180. .topView {
  181. display: flex;
  182. justify-content: flex-start;
  183. padding: 22rpx 0rpx;
  184. margin-left: 22rpx;
  185. margin-right: 22rpx;
  186. border-bottom: 1rpx #CCCCCC dashed;
  187. align-items: center;
  188. }
  189. .leftView,
  190. .rightView {
  191. margin-right: 40rpx;
  192. }
  193. .moneyView {
  194. display: flex;
  195. justify-content: flex-start;
  196. color: #FF4F00;
  197. align-items: baseline;
  198. }
  199. .money {
  200. font-size: 56rpx;
  201. }
  202. .condition {
  203. font-size: 22rpx;
  204. color: #999999;
  205. }
  206. .cardName {
  207. font-size: 30rpx;
  208. font-weight: bold;
  209. color: #333333;
  210. margin-top: 10rpx;
  211. margin-bottom: 15rpx;
  212. }
  213. .valid {
  214. font-size: 26rpx;
  215. color: #999999;
  216. }
  217. .bottomView {
  218. display: flex;
  219. justify-content: space-between;
  220. padding: 20rpx 24rpx;
  221. font-size: 24rpx;
  222. color: #666666;
  223. }
  224. .shopNamesView{
  225. width: 80%;
  226. overflow: hidden;
  227. text-overflow: ellipsis;
  228. white-space: nowrap;
  229. }
  230. .noMore {
  231. text-align: center;
  232. line-height: 50rpx;
  233. color: #999999;
  234. font-size: 28rpx;
  235. }
  236. </style>