exchangeRecord.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="box">
  3. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.id)">
  4. <view class="carPlate">
  5. <view class="time">{{item.createTime}}</view>
  6. <view class="stateBox">
  7. <view class="gray" v-if="item.hState==0">已取消</view>
  8. <view class="red" v-if="item.hState==1">未兑换</view>
  9. <view class="green" v-if="item.hState==2">已兑换</view>
  10. <image src="../../static/img/little_rightArrow.png" mode="" style="width: 24rpx;height: 24rpx;">
  11. </image>
  12. </view>
  13. </view>
  14. <view class="goodsBox">
  15. <image :src="item.url" mode="" style="width: 120rpx;height: 120rpx;"></image>
  16. <view class="goodsRight">
  17. <view class="goodsName">{{item.goodsName}}</view>
  18. <view class="goodsCount">
  19. <view class="jifen">{{item.integral}}<span
  20. style="font-size: 24rpx; color: #333333; margin-left: 5rpx;">积分</span>
  21. </view>
  22. <view class="count">x{{item.qty}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="sum">
  27. <span style="font-size: 24rpx; color: #666666; margin-right: 10rpx;">总计</span>
  28. <span style="font-size: 32rpx; color: #FF0000;
  29. font-weight: 500; margin-right: 5rpx;">553</span>
  30. <span style=" font-size: 24rpx; color: #FF0000;">积分</span>
  31. </view>
  32. </view>
  33. <!-- 上拉 加载更多 -->
  34. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  35. <!-- 无数据空白页 -->
  36. <nodata v-if="itemData.length==0"></nodata>
  37. </view>
  38. </template>
  39. <script>
  40. import nodata from '../../components/nodata/nodata.vue'
  41. export default {
  42. components: {
  43. nodata,
  44. },
  45. data() {
  46. return {
  47. page: 1,
  48. itemData: [],
  49. noMoreShow: false,
  50. avaIntegral: '',
  51. }
  52. },
  53. onLoad(opt) {
  54. this.avaIntegral = opt.avaIntegral
  55. this.page = 1
  56. this.myOrderCoupon()
  57. },
  58. methods: {
  59. goDetail(id) {
  60. uni.navigateTo({
  61. url: 'recordDetail?id=' + id
  62. })
  63. },
  64. myOrderCoupon() {
  65. uni.showLoading({
  66. title: '加载中'
  67. })
  68. this.$http('openIntegralMall/exchangeRecord', {
  69. page: this.page,
  70. limit: 10,
  71. }, 'GET').then(res => {
  72. uni.hideLoading();
  73. // var list = res.data.Items
  74. var list = res.data.Items
  75. // 处理 undefined和null转为空白字符串
  76. // list.forEach((item, index) => {
  77. // for (const key in item) {
  78. // item[key] = this.$praseStrEmpty(item[key])
  79. // }
  80. // })
  81. if (this.page == 1) {
  82. this.itemData = list
  83. } else {
  84. this.itemData = this.itemData.concat(list)
  85. }
  86. if (list.length < 10) {
  87. this.noMoreShow = true
  88. } else {
  89. this.noMoreShow = false
  90. }
  91. })
  92. },
  93. },
  94. // 下拉刷新 上拉加载更多
  95. onPullDownRefresh() {
  96. this.page = 1
  97. this.myOrderCoupon()
  98. setTimeout(function() {
  99. uni.stopPullDownRefresh();
  100. }, 1000);
  101. },
  102. onReachBottom() {
  103. this.page++;
  104. this.myOrderCoupon()
  105. },
  106. }
  107. </script>
  108. <style>
  109. .box {
  110. min-height: 100vh;
  111. background-color: #F4F5F7;
  112. padding: 20rpx 24rpx;
  113. }
  114. .itemHistory {
  115. padding: 30rpx 20rpx;
  116. background-color: #FFFFFF;
  117. border-radius: 10rpx;
  118. margin-bottom: 20rpx;
  119. }
  120. .time {
  121. font-size: 24rpx;
  122. color: #999999;
  123. }
  124. .stateBox {
  125. display: flex;
  126. align-items: center;
  127. }
  128. .carPlate {
  129. display: flex;
  130. align-items: center;
  131. justify-content: space-between;
  132. }
  133. .plate {
  134. font-size: 30rpx;
  135. color: #3C3C3C;
  136. }
  137. .gray {
  138. font-size: 24rpx;
  139. color: #999999;
  140. }
  141. .green {
  142. font-size: 24rpx;
  143. color: #00A040;
  144. }
  145. .red {
  146. font-size: 24rpx;
  147. color: #FF0000;
  148. }
  149. .goodsBox {
  150. display: flex;
  151. padding: 30rpx 0;
  152. border-bottom: 1rpx solid #EEEEEE;
  153. }
  154. .goodsRight {
  155. margin-left: 20rpx;
  156. display: flex;
  157. flex-direction: column;
  158. justify-content: space-between;
  159. }
  160. .goodsName {
  161. width: 522rpx;
  162. font-size: 26rpx;
  163. font-weight: 400;
  164. color: #3C3C3C;
  165. line-height: 37rpx;
  166. margin-bottom: 15rpx;
  167. }
  168. .goodsCount {
  169. display: flex;
  170. justify-content: space-between;
  171. align-items: center;
  172. }
  173. .jifen {
  174. height: 45rpx;
  175. font-size: 32rpx;
  176. font-weight: 500;
  177. color: #333333;
  178. line-height: 45rpx;
  179. }
  180. .count {
  181. height: 33rpx;
  182. font-size: 24rpx;
  183. font-weight: 400;
  184. color: #999999;
  185. line-height: 33rpx;
  186. }
  187. .sum {
  188. margin-top: 34rpx;
  189. display: flex;
  190. justify-content: flex-end;
  191. align-items: center;
  192. }
  193. .noMore {
  194. text-align: center;
  195. line-height: 50rpx;
  196. color: #999999;
  197. font-size: 28rpx;
  198. }
  199. </style>