usableDiscountCard.vue 4.8 KB

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