allDiscountCard.vue 6.4 KB

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