order.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. <template>
  2. <view>
  3. <view class="swiper-wrap">
  4. <view class="u-tabs-box">
  5. <u-tabs-swiper activeColor="#008CFF" ref="tabs" :list="list" :current="current" @change="change" :is-scroll="false" swiperWidth="100%" />
  6. </view>
  7. <swiper class="swiper-box" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish">
  8. <swiper-item class="swiper-item" v-for="(item, index) in list" :key="index">
  9. <scroll-view scroll-y style="height: 100%; width: 100%" @scrolltolower="reachBottom">
  10. <view class="page-box">
  11. <view class="order" @click="goDetails(orderItem)" v-for="(orderItem, index) in orderList[current]" :key="'o-' + index">
  12. <view class="order-top u-flex">
  13. <view class="order-top-left u-flex-1">
  14. <view class="car">{{ orderItem.vehicleNo }}</view>
  15. <view class="addr">{{ orderItem.roadName }}</view>
  16. </view>
  17. <!--
  18. 显示申请退款按钮满足一下条件:
  19. 1.允许退款allowRefund等于1 并且
  20. 2.退款状态auditStatus等于2 已驳回 或者
  21. 3.退款状态auditStatus不能为空 并且不能等于0
  22. -->
  23. <view
  24. class="order-top-right apply-refund"
  25. v-show="orderItem.allowRefund == 1 && (orderItem.auditStatus == 2 || (!orderItem.auditStatus && orderItem.auditStatus != 0))"
  26. @click.stop="applyRefund(orderItem)"
  27. >申请退款</view
  28. >
  29. <!--
  30. 显示申请状态满足以下条件
  31. 申请状态存在或者审核状态存在(由于0比较特殊,所以单独拉出来判断)
  32. -->
  33. <view
  34. class="order-top-right apply-refund"
  35. @click.stop="applyRefundDetails(orderItem)"
  36. v-if="orderItem.refundStatus || orderItem.refundStatus == 0 || orderItem.auditStatus || orderItem.auditStatus == 0"
  37. >{{ orderItem | verifyRefundStatus }}</view
  38. >
  39. <view class="order-top-right" v-else :class="{ 'order-top-right-finished': orderItem.orderStatus == '4' }">
  40. {{ orderItem.orderStatus | verifyStatusFilter }}
  41. </view>
  42. </view>
  43. <!-- 路段显示字段 -->
  44. <view class="order-center" v-if="typeCurrent.value === 'road'">
  45. <view class="order-center-item">订单编号:{{ orderItem.orderId }}</view>
  46. <!-- <view class="order-center-item">入场时间:{{ orderItem.inTime }}</view> -->
  47. <view class="order-center-item" v-if="orderItem.deviceType == 1"> 入场时间:{{ orderItem.inTime }}</view>
  48. <view class="order-center-item" v-else>开始计费:{{ orderItem.inTime }}</view>
  49. <template v-if="orderItem.deviceType == 1">
  50. <view class="order-center-item" v-if="orderItem.orderStatus == 1 && orderItem.outTime"> 出场时间:{{ `未出场` }}</view>
  51. <view class="order-center-item" v-if="orderItem.orderStatus !== 1"> 出场时间:{{ orderItem.outTime }}</view>
  52. </template>
  53. <template v-else>
  54. <view class="order-center-item" v-if="orderItem.orderStatus == 1 && orderItem.outTime"> 结束计费:{{ `未出场` }}</view>
  55. <view class="order-center-item" v-if="orderItem.orderStatus !== 1"> 结束计费:{{ orderItem.outTime }}</view>
  56. </template>
  57. <!-- <view class="order-center-item">
  58. 停车时长:{{ orderItem.duration || 0 }}</view> -->
  59. <!-- <view class="order-center-item" v-if="orderItem.orderStatus !== 1">
  60. 免费时长:{{ orderItem.freeDuration || 0 }}</view> -->
  61. <view class="order-center-item" v-if="orderItem.deviceType == 1">
  62. 免费时长:{{ orderItem.freeDuration || `0天0时${free_time}分0秒` }}</view
  63. >
  64. <!-- <view class="order-center-item" v-if="orderItem.deviceType == 2">
  65. 免费时长:0天0时15分0秒</view> -->
  66. <view class="order-center-item" v-if="orderItem.deviceType == 2">
  67. 免费时长:{{ orderItem.freeDuration || `0天0时${free_time}分0秒` }}</view
  68. >
  69. <!-- <view class="order-center-item" v-if="orderItem.orderStatus !== 1">
  70. 计费时长:{{ orderItem.calcDuration || 0 }}</view> -->
  71. <view class="order-center-item"> 计费时长:{{ orderItem.calcDuration || 0 }}</view>
  72. <view class="order-center-item"> 累计停车时长:{{ orderItem.duration || 0 }}</view>
  73. <view class="order-center-item" v-if="orderItem.orderStatus == 1">
  74. 预计金额:
  75. <span class="pay-amount">{{ orderItem.payAmount || 0 }}</span>
  76. </view>
  77. <view class="order-center-item" v-else>
  78. 应付金额:
  79. <span class="pay-amount">{{ orderItem.payAmount || 0 }}</span>
  80. </view>
  81. <view
  82. class="order-center-item"
  83. v-if="(orderItem.actualAmount || orderItem.actualAmount === 0) && orderItem.orderStatus !== 2 && orderItem.orderStatus !== 1"
  84. >
  85. 实缴金额:
  86. <span class="pay-amount">{{ orderItem.actualAmount || 0 }}</span>
  87. </view>
  88. <view class="order-center-item">泊位号:{{ orderItem.spaceName }}</view>
  89. <view class="order-center-item" v-if="Number(orderItem.deviceType) !== 1"> 车位锁设备号:{{ orderItem.deviceNo }}</view>
  90. </view>
  91. <!-- 停车场显示字段 -->
  92. <view class="order-center" v-if="typeCurrent.value === 'park'">
  93. <view class="order-center-item">订单编号:{{ orderItem.orderId }}</view>
  94. <view class="order-center-item"> 入场通道:{{ orderItem.roadwayName }}</view>
  95. <view class="order-center-item"> 入场时间:{{ orderItem.inTime }}</view>
  96. <view class="order-center-item" v-if="orderItem.orderStatus == 1 && orderItem.outTime"> 出场通道:{{ `未出场` }}</view>
  97. <view class="order-center-item" v-if="orderItem.orderStatus !== 1"> 出场通道:{{ orderItem.outParkingName }}</view>
  98. <view class="order-center-item" v-if="orderItem.orderStatus !== 1"> 出场时间:{{ orderItem.inTime }}</view>
  99. <view class="order-center-item"> 免费时长:{{ orderItem.freeDuration || `0天0时${free_time}分0秒` }}</view>
  100. <view class="order-center-item"> 计费时长:{{ orderItem.calcDuration || 0 }}</view>
  101. <view class="order-center-item"> 累计停车时长:{{ orderItem.duration || 0 }}</view>
  102. <view class="order-center-item">
  103. 应缴金额:
  104. <span class="pay-amount">{{ orderItem.payAmount || 0 }}</span>
  105. </view>
  106. <view
  107. class="order-center-item"
  108. v-if="(orderItem.actualAmount || orderItem.actualAmount === 0) && orderItem.orderStatus !== 2 && orderItem.orderStatus !== 1"
  109. >
  110. 实缴金额:
  111. <span class="pay-amount">{{ orderItem.actualAmount || 0 }}</span>
  112. </view>
  113. </view>
  114. <view class="order-bottom">
  115. <u-cell-item title="收费标准" @click.native.stop="jumpChargeStandard(orderItem)"> </u-cell-item>
  116. </view>
  117. </view>
  118. <u-loadmore :status="loadStatus[index]" bg-color="#F6F6FF"></u-loadmore>
  119. </view>
  120. </scroll-view>
  121. </swiper-item>
  122. </swiper>
  123. </view>
  124. <!-- 停车场和路段切换 -->
  125. <template v-if="projectFlag !== 'zhenning'">
  126. <view class="type-list">
  127. <view
  128. class="type-list-item"
  129. v-for="(item, index) in typeList"
  130. :key="index"
  131. :class="{ 'type-list-item-current': typeCurrent.value === item.value }"
  132. @click="typeTabClick(item)"
  133. >
  134. {{ item.label }}
  135. </view>
  136. </view>
  137. </template>
  138. <u-toast ref="uToast" />
  139. </view>
  140. </template>
  141. <script>
  142. // 订单状态orderStatus: 1-停放中 2-出场中 3-欠费 4-完成
  143. export default {
  144. data() {
  145. return {
  146. orderList: [[], [], [], []],
  147. list: [
  148. {
  149. index: 0,
  150. name: '全部',
  151. orderStatus: null,
  152. pageNum: 1,
  153. total: null
  154. },
  155. {
  156. index: 1,
  157. name: '停放中',
  158. orderStatus: 1,
  159. pageNum: 1,
  160. total: null
  161. },
  162. {
  163. index: 2,
  164. name: '欠费未缴',
  165. orderStatus: 2,
  166. pageNum: 1,
  167. total: null
  168. },
  169. {
  170. index: 3,
  171. name: '已完成',
  172. orderStatus: 4,
  173. pageNum: 1,
  174. total: null
  175. }
  176. ],
  177. current: 0,
  178. swiperCurrent: 0,
  179. tabsHeight: 0,
  180. dx: 0,
  181. loadStatus: ['loadmore', 'loadmore', 'loadmore', 'loadmore'],
  182. // 停车类型
  183. typeList: [
  184. {
  185. label: '路段',
  186. value: 'road'
  187. },
  188. {
  189. label: '停车场',
  190. value: 'park'
  191. }
  192. ],
  193. typeCurrent: {
  194. //设置停车类型默认值
  195. label: '路段',
  196. value: 'road'
  197. }
  198. };
  199. },
  200. onShow() {},
  201. onLoad(options) {
  202. let questCurrent = options.orderStatus;
  203. if (questCurrent) {
  204. this.current = questCurrent;
  205. this.change(questCurrent);
  206. } else {
  207. this.list[this.current].pageNum = 1;
  208. this.orderList = [[], [], [], []];
  209. this.getOrderList(this.list[this.current], this.typeCurrent);
  210. }
  211. },
  212. computed: {
  213. // 价格小数
  214. priceDecimal() {
  215. return (val) => {
  216. if (val !== parseInt(val)) return val.slice(-2);
  217. else return '00';
  218. };
  219. },
  220. // 价格整数
  221. priceInt() {
  222. return (val) => {
  223. if (val !== parseInt(val)) return val.split('.')[0];
  224. else return val;
  225. };
  226. }
  227. },
  228. onBackPress(e) {
  229. // 返回主页面tabBar
  230. uni.switchTab({
  231. url: '../../center/index'
  232. });
  233. // 此处一定要return为true,否则页面不会返回到指定路径
  234. return true;
  235. },
  236. methods: {
  237. reachBottom() {
  238. if (this.orderList[this.current].length >= this.list[this.current].total) {
  239. this.loadStatus.splice(this.list[this.current].index, 1, 'nomore');
  240. return;
  241. }
  242. this.loadStatus.splice(this.list[this.current].index, 1, 'loading');
  243. this.getOrderList(this.list[this.current], this.typeCurrent);
  244. },
  245. // 页面数据
  246. getOrderList(orderType, typeCurrent) {
  247. //初始化订单列表
  248. const param = {
  249. pageNum: orderType.pageNum,
  250. orderStatus: orderType.orderStatus
  251. };
  252. // 未出场: orderStatus = 1-停放中
  253. // 缴费中: orderStatus = 2-出场中 && payStatus = 2-支付中
  254. // 完成: orderStatus = 4-完成
  255. if (typeCurrent.value == 'road') {
  256. this.$u.api
  257. .getOrderList(param)
  258. .then((res) => {
  259. for (const item of res.data.pageInfo.rows) {
  260. this.orderList[orderType.index].push(item);
  261. }
  262. this.list[this.current].total = res.data.pageInfo.total;
  263. this.list[orderType.index].pageNum++;
  264. if (this.orderList[this.current].length >= this.list[this.current].total) {
  265. this.loadStatus.splice(this.list[orderType.index].index, 1, 'nomore');
  266. }
  267. })
  268. .catch((err) => {
  269. this.$refs.uToast.show({
  270. title: err.msg,
  271. type: 'error'
  272. });
  273. });
  274. } else {
  275. this.$u.api
  276. .getRoomParkingApi(param)
  277. .then((res) => {
  278. for (const item of res.data.pageInfo.rows) {
  279. this.orderList[orderType.index].push(item);
  280. }
  281. this.list[this.current].total = res.data.pageInfo.total;
  282. this.list[orderType.index].pageNum++;
  283. if (this.orderList[this.current].length >= this.list[this.current].total) {
  284. this.loadStatus.splice(this.list[orderType.index].index, 1, 'nomore');
  285. }
  286. })
  287. .catch((err) => {
  288. this.$refs.uToast.show({
  289. title: err.msg,
  290. type: 'error'
  291. });
  292. });
  293. }
  294. this.loadStatus.splice(this.current, 1, 'loadmore');
  295. },
  296. // tab栏切换
  297. change(index) {
  298. this.swiperCurrent = index;
  299. //重新初始化
  300. this.orderList = [[], [], [], []];
  301. this.list[index].pageNum = 1;
  302. this.getOrderList(this.list[index], this.typeCurrent);
  303. },
  304. transition({ detail: { dx } }) {
  305. this.$refs.tabs.setDx(dx);
  306. },
  307. animationfinish({ detail: { current } }) {
  308. this.$refs.tabs.setFinishCurrent(current);
  309. this.swiperCurrent = current;
  310. this.current = current;
  311. },
  312. /**
  313. * 跳转详情
  314. * 未发起退款或者未退款成功的
  315. * */
  316. goDetails(item) {
  317. this.$u.route({
  318. url: 'pages/center/order/orderDetails/orderDetails',
  319. params: {
  320. orderId: item.id,
  321. orderType: this.typeCurrent.value
  322. }
  323. });
  324. },
  325. jumpChargeStandard(item) {
  326. let roadNo = item?.roadNo;
  327. if (this.typeCurrent.value === 'park') {
  328. roadNo = item?.parkingNo;
  329. }
  330. this.$u.route({
  331. url: 'pages/chargeStandard/chargeStandard',
  332. params: {
  333. roadNo
  334. }
  335. });
  336. },
  337. // 申请退款
  338. applyRefund(item) {
  339. this.$u.route('pages/applyRefund/applyRefund', {
  340. orderId: item.orderId,
  341. payAmount: item.actualAmount
  342. });
  343. },
  344. /**
  345. * 申请退款详情
  346. * 只要申请退款状态等于1并且审批状态等于1跳转到退款完成详情页
  347. * 否则跳转到退款过程页
  348. * */
  349. applyRefundDetails(item) {
  350. if (item.refundStatus === 1 && item.auditStatus === 1) {
  351. this.$u.route('pages/applyRefundDetails/applyRefundAchieveDetails', {
  352. orderId: item.orderId
  353. });
  354. } else {
  355. this.$u.route('pages/applyRefundDetails/applyRefundDetails', {
  356. orderId: item.orderId
  357. });
  358. }
  359. },
  360. /**
  361. * 类型切换
  362. * @param {Object} item
  363. */
  364. typeTabClick(item) {
  365. this.typeCurrent = item;
  366. //重新初始化
  367. this.orderList = [[], [], [], []];
  368. this.list[this.current].pageNum = 1;
  369. this.getOrderList(this.list[this.current], this.typeCurrent);
  370. }
  371. },
  372. filters: {
  373. verifyStatusFilter(value) {
  374. if (value === 0) {
  375. return '';
  376. } else if (value === 1) {
  377. return '停放中';
  378. } else if (value === 2) {
  379. return '欠费未缴';
  380. } else if (value === 4) {
  381. return '已完成';
  382. } else {
  383. return '';
  384. }
  385. },
  386. verifyRefundStatus(item) {
  387. if (item.auditStatus === 0) {
  388. return '申请退款中';
  389. } else if (item.auditStatus === 1) {
  390. if (item.refundStatus === 0) {
  391. return '退款失败';
  392. } else if (item.refundStatus === 1) {
  393. return '退款成功';
  394. }
  395. } else if (item.auditStatus === 2) {
  396. return '已驳回';
  397. }
  398. }
  399. }
  400. };
  401. </script>
  402. <style>
  403. /* #ifndef H5 */
  404. page {
  405. height: 100%;
  406. background-color: #f6f6ff;
  407. }
  408. /* #endif */
  409. </style>
  410. <style lang="scss" scoped>
  411. @import './order.scss';
  412. </style>