allDiscountCard.vue 6.5 KB

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