coupon-swiper-list-item.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <!-- 在这个文件对每个tab对应的列表进行渲染 -->
  2. <template>
  3. <view class="content">
  4. <z-paging ref="paging" v-model="dataList" @query="queryList" :fixed="false" :auto="false">
  5. <view class="coupon-list-item" v-for="(item, index) in dataList" :key="index">
  6. <view class="coupon-list-item-top">
  7. <view class="clit-left">
  8. <view class="clit-left-top"
  9. >¥<text>{{ item.couponContent }}</text></view
  10. >
  11. <view class="clit-left-bottom">{{ Number(item.threshold) > 0 ? `停车时长满${item.threshold}分钟` : '无门槛' }}</view>
  12. </view>
  13. <view class="clit-center">
  14. <view>{{ item.couponName }}</view>
  15. <view>{{ item.vehicleNo }}</view>
  16. </view>
  17. <template v-if="Number(item.status) === 0">
  18. <view class="clit-right">
  19. <!-- <u-button class="clit-right-btn" type="primary" size="default" @click="goToUse(item)">立即使用</u-button> -->
  20. <u-button class="clit-right-btn" disabled type="primary" size="default">未使用</u-button>
  21. </view>
  22. </template>
  23. <template v-else-if="Number(item.status) === 1">
  24. <view class="clit-right">
  25. <u-image width="128rpx" height="128rpx" src="/static/img/have-used-icon.svg"/>
  26. </view>
  27. </template>
  28. <template v-else-if="Number(item.status) === 2">
  29. <view class="clit-right">
  30. <u-image width="128rpx" height="128rpx" src="/static/img/have-overdued-icon.svg"/>
  31. </view>
  32. </template>
  33. </view>
  34. <view class="coupon-list-item-bottom">
  35. <view class="coupon-list-item-bottom-left">
  36. 适用停车点:
  37. <template v-if="item.parkList.length > 1"> 适用多个停车点 </template>
  38. <template v-else> 仅限{{ item.parkList.map((item) => item.parkName).join('、') }} </template>
  39. </view>
  40. <template v-if="Number(item.status) === 0">
  41. <view class="coupon-list-item-bottom-right">有效期:{{ calcValidity(item.startTime, item.endTime) }} </view>
  42. </template>
  43. <template v-else>
  44. <view class="coupon-list-item-bottom-right">已失效</view>
  45. </template>
  46. </view>
  47. <template v-if="item.parkList.length > 1">
  48. <view class="clibl-point">
  49. <u-read-more
  50. text-indent="0"
  51. show-height="0"
  52. :toggle="true"
  53. :shadow-style="{ backgroundImage: 'none' }"
  54. fontSize="20rpx"
  55. close-text="展开所有停车点"
  56. >
  57. <view class="clibl-point-content">{{ item.parkList.map((item) => item.parkName).join('、') }}</view>
  58. </u-read-more>
  59. </view>
  60. </template>
  61. </view>
  62. </z-paging>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. data() {
  68. return {
  69. dataList: [],
  70. firstLoaded: false
  71. };
  72. },
  73. props: {
  74. tabIndex: {
  75. type: Number,
  76. default: function () {
  77. return 0;
  78. }
  79. },
  80. currentIndex: {
  81. type: Number,
  82. default: function () {
  83. return 0;
  84. }
  85. }
  86. },
  87. watch: {
  88. currentIndex: {
  89. handler(newVal) {
  90. if (newVal === this.tabIndex) {
  91. //懒加载,当滑动到当前的item时,才去加载
  92. if (!this.firstLoaded) {
  93. setTimeout(() => {
  94. this.$refs.paging.reload();
  95. }, 100);
  96. }
  97. }
  98. },
  99. immediate: true
  100. }
  101. },
  102. methods: {
  103. queryList(pageNo, pageSize) {
  104. const params = {
  105. pageNum: pageNo,
  106. pageSize: pageSize,
  107. status: this.currentIndex
  108. };
  109. this.$u.api
  110. .couponListApi(params)
  111. .then((res) => {
  112. this.$refs.paging.complete(res.data.rows);
  113. this.firstLoaded = true;
  114. })
  115. .catch((res) => {
  116. this.$refs.paging.complete(false);
  117. });
  118. },
  119. /**
  120. * 重载数据
  121. * @date 2022-12-23
  122. * @returns {any}
  123. */
  124. reloadData() {
  125. this.$refs.paging.reload();
  126. },
  127. goToUse(item) {
  128. this.$u.route({
  129. url: 'pages/payLists/payLists'
  130. });
  131. },
  132. /**
  133. * 计算剩余时间
  134. * @date 2022-12-23
  135. * @param {any} datetime
  136. * @returns {any}
  137. */
  138. calcValidity(startTime, endTime) {
  139. let endTimeStr = new Date(endTime).valueOf(),
  140. nowTimeStr = new Date(startTime).valueOf() < Date.now() ? Date.now() : new Date(startTime).valueOf(),
  141. remainTimeStr = endTimeStr - nowTimeStr,
  142. day = Math.floor(remainTimeStr / (1000 * 3600 * 24)),
  143. dayOver = remainTimeStr % (1000 * 3600 * 24),
  144. hours = Math.floor(dayOver / (3600 * 1000)),
  145. hourOver = dayOver % (3600 * 1000),
  146. minutes = Math.floor(hourOver / (60 * 1000));
  147. return `${day}天${hours}小时${minutes}分`;
  148. }
  149. }
  150. };
  151. </script>
  152. <style lang="scss" scoped>
  153. /* 注意:父节点需要固定高度,z-paging的height:100%才会生效 */
  154. .content {
  155. height: 100%;
  156. padding-top: 30rpx;
  157. }
  158. .coupon-list-item {
  159. background-color: #fff;
  160. border-radius: 17rpx;
  161. box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
  162. padding: 20rpx 0;
  163. margin-bottom: 30rpx;
  164. &-top {
  165. display: flex;
  166. justify-content: space-between;
  167. align-items: center;
  168. padding: 26rpx 30rpx 37rpx;
  169. border-bottom: 1px solid #eeeeee;
  170. .clit-left {
  171. color: #ff6d6d;
  172. font-size: 24rpx;
  173. width: 30%;
  174. &-top {
  175. margin-bottom: 10rpx;
  176. text {
  177. font-size: 60rpx;
  178. }
  179. }
  180. &-bottom {
  181. width: 100%;
  182. overflow: hidden;
  183. white-space: nowrap;
  184. text-overflow: ellipsis;
  185. }
  186. }
  187. .clit-center {
  188. font-size: 20rpx;
  189. color: #333;
  190. width: 40%;
  191. margin-left: 2%;
  192. view:first-child {
  193. width: 100%;
  194. font-size: 32rpx;
  195. color: #666;
  196. font-weight: 500;
  197. overflow: hidden;
  198. white-space: nowrap;
  199. text-overflow: ellipsis;
  200. margin-bottom: 16rpx;
  201. }
  202. }
  203. .clit-right {
  204. margin-left: 2%;
  205. &-btn {
  206. background-color: #ff6d6d;
  207. }
  208. }
  209. }
  210. &-bottom {
  211. font-size: 20rpx;
  212. color: #999999;
  213. display: flex;
  214. justify-content: space-between;
  215. padding: 10rpx 30rpx 0;
  216. }
  217. .clibl-point {
  218. margin-top: 20rpx;
  219. font-size: 22rpx;
  220. &-content {
  221. font-size: 22rpx;
  222. padding: 0 30rpx;
  223. }
  224. }
  225. }
  226. </style>