index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <view>
  3. <!-- ===================================== 搜索栏 ===================================== -->
  4. <view class="header-bar">
  5. <view class="city" @click="handleCitySelect">
  6. <view class="city-name">{{ city }}</view>
  7. <u-icon name="arrow-down" color="#fff" size="32"></u-icon>
  8. </view>
  9. <u-search placeholder="搜索停车点" :show-action="false" @search="handleSearch" v-model="keyword"></u-search>
  10. <!-- <u-icon class="scan" name="scan" color="#fff" size="48" @click="$refs.uToast.show({title: '建设中'})"></u-icon> -->
  11. </view>
  12. <!-- ===================================== 轮播图 ===================================== -->
  13. <u-swiper :list="bannerList" border-radius="0" mode="none" @click="swiperClick"></u-swiper>
  14. <!-- ===================================== 城市选择器 ===================================== -->
  15. <u-city-select v-model="cityOpen" @city-change="cityChange" :areaCode="['52', '5201']"></u-city-select>
  16. <!-- ===================================== 滚动信息栏 ===================================== -->
  17. <view class="notice-bar-wrap u-flex" v-if="noticeList.length >= 1" @click="openPage('pages/message/message', true)">
  18. <u-icon custom-prefix="custom-icon" size="50" name="xiaoxi" color="#008CFF"></u-icon>
  19. <u-notice-bar
  20. class="u-flex-1"
  21. mode="vertical"
  22. :autoplay="true"
  23. :list="noticeList"
  24. :volume-icon="false"
  25. bg-color="#fff"
  26. color="#727272"
  27. :more-icon="true"
  28. ></u-notice-bar>
  29. </view>
  30. <!-- ===================================== 宫格菜单 ===================================== -->
  31. <u-card :show-head="false" :show-foot="false" border-radius="16" margin="20rpx 40rpx" padding="30">
  32. <view class="content-nav" slot="body">
  33. <view class="content-nav-item" v-for="(grid, index) in gridList" :key="'g-' + index" @click="openPage(grid.url, true)">
  34. <view class="content-nav-item-icon-wrap">
  35. <u-image :src="grid.imageUrl" :width="grid.width || '95rpx'" :height="grid.height || '95rpx'" :mode="grid.mode || 'heightFix'"></u-image>
  36. </view>
  37. <view class="content-nav-item-icon-text">{{ grid.title }}</view>
  38. </view>
  39. </view>
  40. </u-card>
  41. <u-card :show-head="false" :show-foot="false" border-radius="16" margin="20rpx 40rpx" padding="30">
  42. <view slot="body" class="myorders">
  43. <view class="myorders-item"
  44. >当前已缴费<text style="color: #008cff">{{ totalCount || '0' }}</text
  45. >笔,合计<text style="color: #008cff">{{ totalActualAmount || '0' }}</text
  46. >元</view
  47. >
  48. <view class="myorders-item"
  49. >当前欠费<text style="color: #ff482b">{{ totalPayCount || '0' }}</text
  50. >笔,合计<text style="color: #ff482b">{{ totalPayAmount || '0' }}</text
  51. >元</view
  52. >
  53. </view>
  54. </u-card>
  55. <!-- ===================================== 无停车信息 ===================================== -->
  56. <view class="empty-data-box" v-if="!orderList || orderList.length < 1">
  57. <u-empty text="暂无停车信息" mode="list"></u-empty>
  58. </view>
  59. <!-- ===================================== 停车列表 ===================================== -->
  60. <view v-for="item in orderList" :key="item.id">
  61. <u-card :show-foot="false" border-radius="16" margin="20rpx 40rpx" padding="30">
  62. <view class="pending-order-head" slot="head">
  63. <view class="pending-order-head-left">
  64. <b>P</b>
  65. {{ item.roadName }}
  66. </view>
  67. <view class="pending-order-head-right" @click="onRoadInfo(item)">
  68. <u-icon class="arrow-down" name="arrow-down" size="32" color="#aaa"></u-icon>
  69. </view>
  70. </view>
  71. <view class="pending-order-body" slot="body">
  72. <view class="pending-order-body-nav">
  73. <view class="nav-item nav-manual" @click="orderNavclick()" :class="{ active: orderNav == 0 }"> 手动缴费</view>
  74. <view class="nav-item nav-auto" @click="orderNavclick()" :class="{ active: orderNav == 1 }">无感支付 </view>
  75. </view>
  76. <view class="pending-order-body-wrap" v-show="orderNav == 0">
  77. <view class="pending-order-body-left">
  78. <view class="car-number">{{ item.vehicleNo }}</view>
  79. <view class="item-cell">
  80. <span class="pending-order-body-left-label">入场时间:</span>
  81. <span>{{ item.inTime }}</span>
  82. </view>
  83. <view class="item-cell">
  84. <span class="pending-order-body-left-label">出场时间:</span>
  85. <span>{{ item.outTime || '未出场' }}</span>
  86. </view>
  87. <view class="item-cell">
  88. <span class="pending-order-body-left-label">预计金额:</span>
  89. <span>{{ item.payAmount || 0 }}</span>
  90. </view>
  91. <view class="item-cell" v-if="item.vehicleNo == ''">
  92. <span class="pending-order-body-left-label">车牌信息:</span>
  93. <span class="pending-order-body-center-label" @click="addvehicleNo(item.orderId)">添加车牌</span>
  94. </view>
  95. <view class="item-cell" v-else>
  96. <span class="pending-order-body-left-label">车牌信息:</span>
  97. <span>{{ item.vehicleNo }}</span>
  98. <!-- <span class="pending-order-body-right-label" @click="changevehicleNo(item.orderId)">更换</span> -->
  99. </view>
  100. <!-- <view class="item-cell">
  101. <span class="pending-order-body-left-label">出场时间:</span>
  102. <span>{{item.outTime||'停放中'}}</span>
  103. </view>
  104. <view class="item-cell">
  105. <span class="pending-order-body-left-label">停留时间:</span>
  106. <span>{{item.duration||'停放中'}}</span>
  107. </view>
  108. <view class="item-cell cost">
  109. <span class="pending-order-body-left-label">停车费用:</span>
  110. <span>
  111. <span class="number" v-if="item.payAmount">¥{{item.payAmount}}</span>
  112. <span class="number" v-else>停放中</span>
  113. </span>
  114. </view>-->
  115. </view>
  116. <view class="pending-order-body-right">
  117. <view class="order">停车泊位:{{ item.spaceName }}</view>
  118. </view>
  119. <view class="go-pay-wrap" v-if="Number(item.deviceType) !== 2">
  120. <view class="go-pay" @click="goPay(item)" v-if="item.payAmount != 0">出场缴费</view>
  121. <view class="go-pay1" v-else>出场缴费</view>
  122. </view>
  123. </view>
  124. <view class="pending-order-body-wrap" v-show="orderNav == 1">
  125. <view v-if="contractStatus == 0" class="nosign">
  126. <view class="nosign1">您的车牌未签约贵州银行无感支付</view>
  127. <view class="nosign2">请下载贵州银行手机银行app进行签约</view>
  128. </view>
  129. <view v-if="contractStatus == 1" class="sign">
  130. <view class="sign1">您已签约贵州银行无感支付</view>
  131. <view class="sign2">停车出场时将默认使用无感支付进行支付</view>
  132. </view>
  133. </view>
  134. </view>
  135. </u-card>
  136. </view>
  137. <!-- ===================================== 优惠活动 ===================================== -->
  138. <view class="promotion-box">
  139. <view class="promotion-title">
  140. <text>优惠活动</text>
  141. </view>
  142. <view class="promotion-banner">
  143. <u-swiper :list="promotionBannerList" @click="promotionBannerClick" height="221"></u-swiper>
  144. </view>
  145. </view>
  146. <!-- ===================================== 绑定车牌号弹框 ===================================== -->
  147. <u-modal
  148. v-model="bindCarShow"
  149. title="绑定车牌号"
  150. :show-cancel-button="true"
  151. confirm-text="去绑定"
  152. content="首次使用请先绑定您的车牌"
  153. @confirm="$u.route({ url: 'pages/myCars/myCars' })"
  154. ></u-modal>
  155. <!-- ===================================== 停车场信息弹框 ===================================== -->
  156. <u-popup class="popup-order-details" v-model="showOrderDetails" mode="center" width="90%" border-radius="20">
  157. <view class="popup-order-details-til">停车场信息</view>
  158. <view class="popup-order-details-con">
  159. <dl>
  160. <dt>路段名称:</dt>
  161. <dd>{{ popupOrderDetails.roadName }}</dd>
  162. </dl>
  163. <dl>
  164. <dt>路段编码:</dt>
  165. <dd>{{ popupOrderDetails.roadNo }}</dd>
  166. </dl>
  167. <dl>
  168. <dt>联系人:</dt>
  169. <dd>{{ popupOrderDetails.manager }}</dd>
  170. </dl>
  171. <dl>
  172. <dt>联系电话:</dt>
  173. <dd @click="phoneCall(popupOrderDetails.telephone)">{{ popupOrderDetails.telephone }}</dd>
  174. </dl>
  175. </view>
  176. <view class="popup-order-details-footer" @click="closeOrderDetails">知道了</view>
  177. </u-popup>
  178. <!-- ===================================== 支付方式弹框 ===================================== -->
  179. <!-- <PaymentMethod :payWayPop="payWayPop" :curOrderList="curOrderList" :jumpUrl="jumpUrl" @closePaymentMethod="closePaymentMethod"></PaymentMethod> -->
  180. <!-- ===================================== 0元提示弹出层 ===================================== -->
  181. <u-modal v-model="jumpMsgModal" :content="jumpMsgContent" :show-title="false" :show-confirm-button="false" />
  182. <u-toast ref="uToast" />
  183. <!-- ===================================== 添加车牌弹出层 ===================================== -->
  184. <u-popup class="popup-vehicleNo" v-model="ShowaddvehicleNo" mode="center" border-radius="20" width="710rpx" height="auto">
  185. <view class="popup-vehicleNo-title">添加车牌</view>
  186. <view class="popup-vehicleNo-center"></view>
  187. <view class="popup-vehicleNo-content">
  188. <view class="new-plate-number">
  189. <view class="message-input-wrap" @click="messageInputClick">
  190. <u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
  191. </view>
  192. </view>
  193. </view>
  194. <view class="popup-vehicleNo-select">暂无绑定车牌</view>
  195. <view class="vehicleNo-btn">
  196. <u-button type="primary" @click="handleAddCar">确认</u-button>
  197. <u-button type="primary" plain @click="ShowaddvehicleNo = false">取消</u-button>
  198. </view>
  199. </u-popup>
  200. <u-action-sheet :list="colorList" @click="confirmColor" v-model="colorShow"></u-action-sheet>
  201. <u-keyboard
  202. ref="uKeyboard"
  203. mode="car"
  204. @change="keyboardChange"
  205. @confirm="keyboardConfirm"
  206. @backspace="backspace"
  207. v-model="keyboardshow"
  208. ></u-keyboard>
  209. <!-- ===================================== 更换车牌弹出层 ===================================== -->
  210. <u-popup class="popup-vehicleNo" v-model="ShowchangevehicleNo" mode="center" border-radius="20" width="710rpx" height="auto">
  211. <view class="popup-vehicleNo-title">更换车牌</view>
  212. <view class="popup-vehicleNo-center"></view>
  213. <view class="popup-vehicleNo-content">
  214. <view class="new-plate-number">
  215. <view class="message-input-wrap" @click="messageInputClick">
  216. <u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
  217. </view>
  218. </view>
  219. </view>
  220. <view class="popup-vehicleNo-select">
  221. <u-collapse ref="refValue">
  222. <u-collapse-item title="点击选择车牌" align="center">
  223. <u-cell-group>
  224. <u-cell-item :title="item.vehicleNo" v-for="(item, index) in groupList" :key="index" :arrow="false">
  225. <u-radio-group v-model="selectvalue" @change="radioGroupChange">
  226. <u-radio :name="item.vehicleNo" :key="index"></u-radio>
  227. </u-radio-group>
  228. </u-cell-item>
  229. </u-cell-group>
  230. </u-collapse-item>
  231. </u-collapse>
  232. </view>
  233. <view class="vehicleNo-btn">
  234. <u-button type="primary" @click="handleAddCar">确认</u-button>
  235. <u-button type="primary" plain @click="ShowchangevehicleNo = false">取消</u-button>
  236. </view>
  237. </u-popup>
  238. <!-- 选择支付 -->
  239. <ChoosePayment ref="choosePayment" :curOrderList="curOrderList" :jumpUrl="jumpUrl" @closePaymentMethod="closePaymentMethod" />
  240. </view>
  241. </template>
  242. <script>
  243. import getUrlParams from '../../utils/getUrlParams.js';
  244. // import PaymentMethod from '@/pages/paymentMethod/paymentMethod.vue';
  245. import ChoosePayment from '@/pages/choosePayment/choosePayment.vue';
  246. import { jsonp } from 'vue-jsonp';
  247. export default {
  248. components: {
  249. // PaymentMethod,
  250. ChoosePayment
  251. },
  252. data() {
  253. return {
  254. orderid: '',
  255. selectvalue: null,
  256. groupList: [],
  257. radiogroupList: [],
  258. keyboardshow: false,
  259. colorShow: false,
  260. colorList: [
  261. { text: '蓝色', colorCode: 0 },
  262. { text: '黄色', colorCode: 1 },
  263. { text: '黑色', colorCode: 2 },
  264. { text: '白色', colorCode: 3 },
  265. { text: '绿色', colorCode: 4 },
  266. { text: '其他', colorCode: 99 }
  267. ],
  268. vehicleColor: 0,
  269. newPlateNumber: '',
  270. //更换车牌弹窗
  271. ShowchangevehicleNo: false,
  272. //添加车牌弹窗
  273. ShowaddvehicleNo: false,
  274. // 城市选择框
  275. cityOpen: false,
  276. // 选中城市
  277. city: '贵州省',
  278. // 搜索框值
  279. keyword: '',
  280. // 轮播图
  281. bannerList: [
  282. {
  283. image: require('@/static/img/index-banner01.png')
  284. }
  285. ],
  286. // 订单列表
  287. orderList: [],
  288. // 微信code
  289. code: null,
  290. // 手动,无感
  291. orderNav: '',
  292. // 绑定车询问弹窗
  293. bindCarShow: false,
  294. // 是否线上订单细节
  295. showOrderDetails: false,
  296. // 订单详情
  297. popupOrderDetails: [],
  298. // 消息列表
  299. noticeList: [],
  300. // 优惠活动广告图
  301. promotionBannerList: [
  302. {
  303. id: 1,
  304. image: '/static/img/promotion-banner-1.png',
  305. title: '1分钱停车'
  306. },
  307. {
  308. id: 2,
  309. image: '/static/img/promotion-banner-2.png',
  310. title: '八折停车'
  311. }
  312. ],
  313. // 签约状态
  314. contractStatus: '',
  315. vehicleId: '',
  316. recordList: [],
  317. // 支付方式弹框
  318. payWayPop: false,
  319. // 订单号
  320. curOrderList: [],
  321. // 当前位置经纬度
  322. latLongItude: {},
  323. // 跳转地址
  324. jumpUrl: '',
  325. // 宫格菜单列表
  326. gridList: [
  327. {
  328. url: 'pages/payLists/payLists',
  329. imageUrl: '../../static/img/index-content-nav-01.png',
  330. title: '停车缴费'
  331. },
  332. {
  333. url: 'pages/favourableActivity/favourableActivity',
  334. imageUrl: '../../static/img/index-content-nav-02.png',
  335. title: '优惠活动'
  336. },
  337. {
  338. url: 'pages/myCars/myCars',
  339. imageUrl: '../../static/img/index-content-nav-03.png',
  340. title: '车辆管理'
  341. },
  342. {
  343. url: 'pages/searchparking/searchparking',
  344. imageUrl: '../../static/img/index-content-nav-04.png',
  345. title: '我的停车'
  346. }
  347. ],
  348. totalActualAmount: '', //缴费总额
  349. totalPayAmount: '', //应支付总额
  350. totalCount: '', //缴费总笔数
  351. totalPayCount: '', //应支付总笔数
  352. // 0元提示框
  353. jumpMsgModal: false,
  354. // 0元提示内容
  355. jumpMsgContent: ''
  356. };
  357. },
  358. onLoad(page) {
  359. // 获取参数免费时长
  360. this.$u.api
  361. .getParamsApi({
  362. key: 'park.lock.freetime'
  363. })
  364. .then((res) => {
  365. if (res.code === 200) {
  366. this.$u.vuex('free_time', res.msg);
  367. }
  368. });
  369. const locationLocaturl = window.location.href;
  370. // 微信聚合支付完成跳转过来重定向到详情页
  371. const type = getUrlParams(locationLocaturl, 'type');
  372. if (type && type === 'jumpurl') {
  373. const jumpurl = localStorage.getItem('jumpUrl');
  374. if (jumpurl) {
  375. uni.showLoading({
  376. title: '正在跳转中...'
  377. });
  378. setTimeout(() => {
  379. uni.hideLoading();
  380. location.href = jumpurl;
  381. }, 0);
  382. }
  383. }
  384. // 0元支付情况添加一个加载层
  385. const jumpMsg = getUrlParams(locationLocaturl, 'jumpMsg');
  386. if (jumpMsg) {
  387. this.jumpMsgModal = true;
  388. this.jumpMsgContent = jumpMsg;
  389. setTimeout(() => {
  390. this.jumpMsgModal = false;
  391. }, 3000);
  392. }
  393. this.getLocation();
  394. },
  395. onShow() {
  396. this.handleGetIndexData();
  397. const locationLocaturl = window.location.search;
  398. this.code = getUrlParams(locationLocaturl, 'code');
  399. if (this.code && !this.$store.state.vuex_wxinfo.openId) {
  400. this.handleGetWXInfo(this.code);
  401. }
  402. },
  403. methods: {
  404. radioGroupChange(e) {
  405. this.newPlateNumber = e;
  406. },
  407. // 获取车辆列表
  408. handlegetMycars() {
  409. let that = this;
  410. this.$u.api.getMycars().then((res) => {
  411. if (res.code === 200) {
  412. this.groupList = res.data.rows;
  413. this.radiogroupList = res.data.rows;
  414. this.$nextTick(() => {
  415. // dom元素更新后执行,因此这里能正确打印更改之后的值
  416. console.log(that.$refs.refValue.init()); // 改变了的值
  417. });
  418. } else {
  419. this.$refs.uToast.show({
  420. title: res.msg,
  421. type: 'error'
  422. });
  423. }
  424. });
  425. },
  426. //更换车牌信息
  427. changevehicleNo(id) {
  428. this.orderid = id;
  429. this.ShowchangevehicleNo = true;
  430. this.handlegetMycars();
  431. },
  432. // 添加车辆
  433. handleAddCar() {
  434. if (!this.$u.test.carNo(this.newPlateNumber)) {
  435. this.$refs.uToast.show({
  436. title: '请正确填写车牌号',
  437. type: 'error'
  438. });
  439. return;
  440. }
  441. let param = {
  442. orderId: this.orderid,
  443. vehicleNo: this.newPlateNumber,
  444. vehicleColor: this.vehicleColor
  445. };
  446. let that = this;
  447. this.$u.api.bindVehicleNo(param).then((res) => {
  448. if (res.code === 200) {
  449. this.$refs.uToast.show({
  450. title: res.msg,
  451. type: 'success'
  452. });
  453. that.handleGetIndexData();
  454. that.ShowchangevehicleNo = false;
  455. } else {
  456. this.$refs.uToast.show({
  457. title: res.msg,
  458. type: 'error'
  459. });
  460. }
  461. });
  462. },
  463. //新增车牌
  464. addvehicleNo() {
  465. this.ShowaddvehicleNo = true;
  466. },
  467. // 点击输入框
  468. messageInputClick() {
  469. this.keyboardshow = true;
  470. },
  471. // 按键被点击(点击退格键不会触发此事件)
  472. keyboardChange(val) {
  473. // 将每次按键的值拼接到value变量中,注意+=写法
  474. this.newPlateNumber += val;
  475. },
  476. // 退格键被点击
  477. backspace() {
  478. // 删除value的最后一个字符
  479. if (this.newPlateNumber.length) this.newPlateNumber = this.newPlateNumber.substr(0, this.newPlateNumber.length - 1);
  480. },
  481. // 键盘输入完成后确认
  482. keyboardConfirm() {
  483. this.colorShow = true;
  484. },
  485. // 确认颜色
  486. confirmColor(e) {
  487. this.vehicleColor = this.colorList[e].colorCode;
  488. },
  489. //添加车牌
  490. addvehicleNo(id) {
  491. this.orderid = id;
  492. this.ShowaddvehicleNo = true;
  493. },
  494. // 定位
  495. getLocation() {
  496. const that = this;
  497. if (navigator.geolocation) {
  498. // 判断是否有这个对象
  499. navigator.geolocation.getCurrentPosition(
  500. function (pos) {
  501. that.latLongItude = {
  502. latitude: pos.coords.latitude,
  503. longitude: pos.coords.longitude
  504. };
  505. that.latitude = pos.coords.latitude;
  506. that.longitude = pos.coords.longitude;
  507. that.getCityNameByLonLat(that.latLongItude);
  508. },
  509. function (err) {
  510. // 错误处理
  511. // switch (err.code) {
  512. // case 1:
  513. // alert('位置服务被拒绝。');
  514. // break;
  515. // case 2:
  516. // alert('暂时获取不到位置信息。');
  517. // break;
  518. // case 3:
  519. // alert('获取信息超时。');
  520. // break;
  521. // default:
  522. // alert('未知错误。');
  523. // break;
  524. // }
  525. uni.getLocation({
  526. type: 'gcj02',
  527. success: function (res) {
  528. that.latLongItude = {
  529. latitude: res.latitude,
  530. longitude: res.longitude
  531. };
  532. that.latitude = res.latitude;
  533. that.longitude = res.longitude;
  534. that.getCityNameByLonLat(that.latLongItude);
  535. }
  536. });
  537. }
  538. );
  539. } else {
  540. alert('当前系统不支持GPS API');
  541. }
  542. },
  543. // 通过经纬度获取地区详细信息
  544. getCityNameByLonLat({ longitude, latitude } = {}) {
  545. const that = this;
  546. uni.showLoading({
  547. title: '加载中',
  548. mask: true
  549. });
  550. const str = `output=jsonp&key=BOGBZ-2BZ33-O4L32-Y3QJR-PGN66-RFFEL&location=${latitude},${longitude}`;
  551. jsonp('https://apis.map.qq.com/ws/geocoder/v1/?' + str, {}).then((res) => {
  552. uni.hideLoading();
  553. if (res.status == 0) {
  554. if (res.result.ad_info) {
  555. that.city = res.result.ad_info.district;
  556. }
  557. }
  558. });
  559. },
  560. // 轮播图点击
  561. swiperClick(item) {
  562. this.$u.route({
  563. url: 'pages/bannerDetails/bannerDetails',
  564. params: {
  565. id: this.bannerList[item].id
  566. }
  567. });
  568. },
  569. // 切换无感和手动
  570. orderNavclick() {
  571. uni.showLoading({
  572. title: '加载中'
  573. });
  574. console.log('this.recordList[1]', this.recordList[1]);
  575. console.log('orderNav', this.orderNav);
  576. if (!this.recordList[1]) {
  577. uni.hideLoading();
  578. return;
  579. }
  580. this.$u.api
  581. .feePay({
  582. vehicleId: this.recordList[1]
  583. })
  584. .then((res) => {
  585. console.log('res', res);
  586. if (res?.code == 200) {
  587. this.handleGetIndexData();
  588. } else {
  589. // this.$refs.uToast.show({
  590. // title: res?.msg,
  591. // type: 'error'
  592. // })
  593. }
  594. uni.hideLoading();
  595. })
  596. .catch((err) => {
  597. console.log('orderNavclick err', err);
  598. });
  599. },
  600. /**
  601. * 跳转页面
  602. * path 跳转路径
  603. * flag 是否存储
  604. * */
  605. openPage(path, flag) {
  606. this.$u.route({
  607. url: path
  608. });
  609. if (flag) {
  610. uni.setStorage({
  611. key: 'messageBack',
  612. data: 'pages/index/index'
  613. });
  614. }
  615. },
  616. // 搜索
  617. handleSearch() {
  618. uni.reLaunch({
  619. url: `/pages/parkingLists/parkingLists?keyword=${this.keyword}`
  620. });
  621. },
  622. // 城市选择
  623. handleCitySelect() {
  624. this.cityOpen = true;
  625. },
  626. // 城市选择下拉变化
  627. cityChange(e) {
  628. if (e.area) {
  629. this.city = e.area.label;
  630. } else if (e.city) {
  631. this.city = e.city.label;
  632. } else {
  633. this.city = e.province.label;
  634. }
  635. },
  636. // 获取首页数据
  637. handleGetIndexData() {
  638. this.$u.api.getIndexData().then((res) => {
  639. if (res.code === 200) {
  640. // 轮播
  641. const bannerList = [];
  642. const banner = res.data?.advs;
  643. banner.forEach((item) => {
  644. const obj = {
  645. image: item.bannerUrl,
  646. id: item.id,
  647. name: item.name,
  648. content: item.content
  649. };
  650. bannerList.push(obj);
  651. });
  652. if (bannerList.length > 0) {
  653. this.bannerList = bannerList;
  654. }
  655. // 是否有绑定车牌: 没有则通过弹框去绑定
  656. const vehicleList = res.data?.vehicleList ?? [];
  657. if (vehicleList.length === 0) {
  658. this.bindCarShow = true;
  659. }
  660. // 无感和手动
  661. const enableFeepay = [];
  662. const orderList = res.data?.orderList ?? [];
  663. orderList.forEach((item) => {
  664. if (item.enableFeepay) {
  665. enableFeepay.push(item.enableFeepay);
  666. } else {
  667. enableFeepay.push(0);
  668. }
  669. enableFeepay.push(item.vehicleId);
  670. if (item.contractStatus) {
  671. enableFeepay.push(item.contractStatus);
  672. } else {
  673. enableFeepay.push(0);
  674. }
  675. });
  676. this.totalActualAmount = res.data?.payedInfo?.totalActualAmount;
  677. this.totalCount = res.data?.payedInfo?.totalCount;
  678. this.totalPayAmount = res.data?.payingInfo?.totalPayAmount;
  679. this.totalPayCount = res.data?.payingInfo?.totalCount;
  680. this.recordList = enableFeepay;
  681. this.orderNav = enableFeepay[0];
  682. this.contractStatus = enableFeepay[2];
  683. this.orderList = res.data.orderList;
  684. // 消息提示
  685. const newsList = [];
  686. const news = res.data?.news ?? [];
  687. news.forEach((item) => {
  688. newsList.push(item.content);
  689. });
  690. this.noticeList = newsList;
  691. } else {
  692. this.$refs.uToast.show({
  693. title: res.msg,
  694. type: 'error'
  695. });
  696. }
  697. });
  698. },
  699. // 去支付,选择支付方式
  700. goPay(item) {
  701. const href = location.origin;
  702. this.jumpUrl = href + '/pages/center/order/orderDetails/orderDetails?orderId=' + item.id + '&type=open';
  703. // this.payWayPop = true;
  704. this.curOrderList = [];
  705. this.curOrderList.push(item.id);
  706. this.$refs['choosePayment'].openPopup({ ...item }, 'single', 'road');
  707. },
  708. // 获取路段详情
  709. onRoadInfo(item) {
  710. this.$u.api
  711. .roadInfoById({
  712. id: item.roadId
  713. })
  714. .then((res) => {
  715. this.popupOrderDetails = res.data;
  716. this.showOrderDetails = true;
  717. })
  718. .catch((err) => {
  719. this.$refs.uToast.show({
  720. title: '系统异常',
  721. type: 'error'
  722. });
  723. });
  724. },
  725. // 关闭路段详情弹框
  726. closeOrderDetails() {
  727. this.showOrderDetails = false;
  728. },
  729. // 打电话
  730. phoneCall(phone) {
  731. uni.makePhoneCall({
  732. phoneNumber: phone
  733. });
  734. },
  735. /**
  736. * 点击优惠活动的广告图
  737. * */
  738. promotionBannerClick(cur) {
  739. this.promotionBannerList.forEach((item, index) => {
  740. if (cur === index) {
  741. this.$u.route({
  742. url: 'pages/favourableActivity/favourableActivity',
  743. params: {
  744. title: item.title,
  745. id: item.id
  746. }
  747. });
  748. }
  749. });
  750. },
  751. // 关闭支付弹框
  752. closePaymentMethod() {
  753. this.payWayPop = false;
  754. }
  755. }
  756. };
  757. </script>
  758. <style lang="scss" scoped>
  759. @import './index.scss';
  760. </style>