monthly.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <!-- 包月 -->
  3. <view class="monthly">
  4. <z-paging class="paging" ref="paging" v-model="dataList" @query="queryList">
  5. <!-- 选项卡 -->
  6. <template v-if="projectFlag !== 'zhenning'">
  7. <view class="monthly-tab" slot="top">
  8. <u-tabs
  9. :list="tabList"
  10. :is-scroll="false"
  11. :current="current"
  12. @change="tabChange"
  13. bg-color="#fff"
  14. inactive-color="#000000"
  15. active-color="#008CFF"
  16. :bold="false"
  17. :active-item-style="{ color: '#008CFF' }"
  18. />
  19. </view>
  20. </template>
  21. <view class="monthly-list">
  22. <view class="monthly-list-item" v-for="(monthlyItem, index) in dataList" :key="index">
  23. <view class="monthly-list-item-top">
  24. <view class="mlit-left">
  25. <view>{{ monthlyItem.vehicleNo }}</view>
  26. <view>{{ monthlyItem.roadName || monthlyItem.parkName }}</view>
  27. </view>
  28. <view class="mlit-right u-flex">
  29. <view class="mlit-right-item fee-status" v-if="monthlyItem.feeStatus === 0">未缴费</view>
  30. <view class="mlit-right-item fee-status" v-if="monthlyItem.feeStatus === 1">已缴费</view>
  31. <view class="mlit-right-item" v-if="monthlyItem.energyType === 1">汽油车</view>
  32. <view class="mlit-right-item" v-if="monthlyItem.energyType === 2">新能源</view>
  33. </view>
  34. </view>
  35. <view class="monthly-list-item-bottom">
  36. <view class="mlib-item">
  37. <view>有效期限</view>:
  38. <view> {{ monthlyItem.beginTime.split('-').join('.') }}-{{ monthlyItem.endTime.split('-').join('.') }} </view>
  39. </view>
  40. <view class="mlib-item">
  41. <view>剩余天数</view>:
  42. <view>{{ monthlyItem.surplusDays }}天</view>
  43. </view>
  44. </view>
  45. <view v-if="monthlyItem.feeStatus == '0'" class="button-wrap u-flex u-row-right">
  46. <view
  47. class="tool-btn"
  48. :class="{ 'tool-btn-cancel': monthlyItem.feeStatus == '0' }"
  49. v-if="monthlyItem.feeStatus == '0'"
  50. @click="cancelMonth(monthlyItem.monthId)"
  51. >取消订单</view
  52. >
  53. <view class="tool-btn pay-btn" v-if="monthlyItem.feeStatus == '0'" @click="goMonthPay(monthlyItem)">重新支付</view>
  54. </view>
  55. <view v-else-if="monthlyItem.feeStatus == 1 && monthlyItem.surplusDays > 2" class="button-wrap u-flex u-row-right">
  56. <view class="tool-btn">已缴费</view>
  57. </view>
  58. <view v-else-if="monthlyItem.feeStatus == 1 && monthlyItem.surplusDays < 3" class="button-wrap u-flex u-row-right">
  59. <view class="tool-btn" @click="goRenewal(monthlyItem)">去续费</view>
  60. </view>
  61. </view>
  62. </view>
  63. </z-paging>
  64. <u-modal ref="uModal" v-model="cancelShow" content="确认取消该订单?" :async-close="true" @confirm="confirm" :show-cancel-button="true"></u-modal>
  65. <u-toast ref="uToast" />
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. data() {
  71. return {
  72. tabList: [
  73. {
  74. name: '路段',
  75. value: 'road'
  76. },
  77. {
  78. name: '停车场',
  79. value: 'park'
  80. }
  81. ],
  82. current: 0,
  83. currentValue: 'road',
  84. id: '', // 当前选中的条目id
  85. cancelShow: false,
  86. dataList: [],
  87. pageSize: 10,
  88. pageNo: 1
  89. };
  90. },
  91. onLoad(page) {
  92. const obj = {
  93. road: 0,
  94. park: 1
  95. };
  96. if (page.type) {
  97. this.current = obj[page.type];
  98. }
  99. },
  100. onShow() {
  101. this.$nextTick(() => {
  102. this.$refs.paging.reload();
  103. });
  104. },
  105. onBackPress(options) {
  106. this.$u.route({
  107. type: 'switchTab',
  108. url: 'pages/center/index'
  109. });
  110. return true;
  111. },
  112. methods: {
  113. //tabs通知swiper切换
  114. tabChange(index) {
  115. this.current = index;
  116. this.currentValue = this.tabList[index].value;
  117. this.$refs.paging.reload();
  118. },
  119. // 下拉刷新操作
  120. queryList(pageNo, pageSize) {
  121. const tabObj = {
  122. road: 'getMonthList',
  123. park: 'getParkMonthList'
  124. };
  125. this.$u.api[tabObj[this.currentValue]]({
  126. pageSize: pageSize,
  127. pageNum: pageNo,
  128. ifPark: this.current
  129. }).then((res) => {
  130. if (res.code === 200) {
  131. this.pageNo = pageNo;
  132. this.pageSize = pageSize;
  133. this.$refs.paging.complete(res.data.rows);
  134. } else {
  135. this.$refs.uToast.show({
  136. title: res.msg,
  137. type: 'error'
  138. });
  139. }
  140. });
  141. },
  142. // 取消订单
  143. cancelMonth(monthId) {
  144. this.id = monthId;
  145. this.cancelShow = true;
  146. },
  147. // 重新支付
  148. goMonthPay(item) {
  149. const params = {
  150. vehicleNo: item.vehicleNo,
  151. monthId: item.monthId
  152. };
  153. if (this.current === 0) {
  154. params.roadNo = item.roadNo;
  155. } else {
  156. params.parkNo = item.parkNo;
  157. }
  158. this.$u.route({
  159. url: 'pages/handleMonthly/handleMonthly',
  160. params
  161. });
  162. },
  163. // 确认取消订单
  164. confirm() {
  165. this.$u.api
  166. .cancelMonth({
  167. monthId: this.id
  168. })
  169. .then((res) => {
  170. if (res.code === 200) {
  171. this.$refs.uToast.show({
  172. title: res.msg,
  173. type: 'success'
  174. });
  175. this.queryList(this.pageNo, this.pageSize);
  176. } else {
  177. this.$refs.uToast.show({
  178. title: res.msg,
  179. type: 'error'
  180. });
  181. }
  182. this.$refs['uModal'].clearLoading();
  183. this.cancelShow = false;
  184. })
  185. .catch((err) => {
  186. this.$refs['uModal'].clearLoading();
  187. this.$refs.uToast.show({
  188. title: '操作失败',
  189. type: 'error'
  190. });
  191. });
  192. },
  193. /**
  194. * 去续费
  195. * */
  196. goRenewal(item) {
  197. const params = {
  198. vehicleNo: item.vehicleNo
  199. };
  200. if (this.current === 0) {
  201. params.roadNo = item.roadNo;
  202. } else {
  203. params.parkNo = item.parkNo;
  204. }
  205. this.$u.route({
  206. url: 'pages/handleMonthly/handleMonthly',
  207. params
  208. });
  209. }
  210. }
  211. };
  212. </script>
  213. <style lang="scss" scoped>
  214. @import './monthly.scss';
  215. </style>