123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <template>
- <!-- 道闸 -->
- <view class="parking-lock">
- <!-- 道闸支付 -->
- <template v-if="parkingLockStatus === 1">
- <view class="parking-lock-pay">
- <view class="parking-lock-title">支付停车费</view>
- <view class="parking-lock-tips">请您确认停车费用,确认后请支付费用,结束停车。谢谢您的使用!</view>
- <view class="parking-lock-info">
- <view class="parking-lock-info-item">
- <view>车牌号</view>
- <view class="weight">{{ orderInfo.vehicleNo }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>停车场名称</view>
- <view>{{ orderInfo.roadName }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>入场车道</view>
- <view>{{ '入口1' }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>入场时间</view>
- <view>{{ orderInfo.inTime }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>出场车道</view>
- <view>{{ '出口1' }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>出场时间</view>
- <view>{{ orderInfo.outTime }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>免费时长</view>
- <!-- <view>{{ orderInfo.freeDuration || '0天0时15分0秒' }}</view> -->
- <view>{{ `0天0时${free_time}分0秒` }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>计费时长</view>
- <view>{{ orderInfo.calcDuration || 0 }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>累计停车时长</view>
- <view>{{ orderInfo.duration || 0 }}</view>
- </view>
- <view class="parking-lock-info-item">
- <view>应缴金额</view>
- <view class="really-money">{{ orderInfo.payAmount || 0 }} 元</view>
- </view>
- <view class="parking-lock-info-item">
- <view>订单编号</view>
- <view>{{ orderInfo.orderId }}</view>
- </view>
- </view>
- <view class="parking-lock-pay-btn" v-if="is_pay">
- <button type="default" @click="payMoney">立即支付</button>
- </view>
- </view>
- </template>
- <template v-else-if="parkingLockStatus === 2">
- <view class="parking-lock-pay">
- <view class="parking-lock-tips">{{ tipsMsg }}</view>
- </view>
- </template>
- <ChoosePayment
- ref="choosePayment"
- :curOrderList="[orderId]"
- :jumpUrl="jumpUrl"
- :payeeId="payeeId"
- :payeeName="payeeName"
- :pursueType="pursueType"
- :vehicleNo="orderInfo.vehicleNo"
- />
- <u-popup v-model="show" mode="center" border-radius="14" width="200rpx" height="200rpx">
- <view class="loadingSelect">订单查询中...</view>
- <view class="spinner">
- <view class="rect1"></view>
- <view class="rect2"></view>
- <view class="rect3"></view>
- <view class="rect4"></view>
- <view class="rect5"></view>
- </view>
- </u-popup>
- <u-toast ref="uToast" />
- </view>
- </template>
- <script>
- import ChoosePayment from '@/pages/choosePayment/choosePayment.vue';
- export default {
- components: {
- ChoosePayment
- },
- data() {
- return {
- // 车位锁状态 1:需支付 2:查询失败返回提醒
- parkingLockStatus: 0,
- // 支付方式选择弹框
- payWayPop: false,
- // 订单编号
- orderList: [],
- // 提示信息
- tipsMsg: null,
- // 轮询
- timer: null,
- // 订单信息
- orderInfo: {},
- // 订单id
- orderId: null,
- // 重定向地址
- jumpUrl: location.href + '&isBack=1',
- show: false,
- isBack: '',
- polyOrderId: '',
- // 地磁
- spaceId: '',
- payeeId: '',
- payeeName: '',
- is_pay: false
- };
- },
- onLoad(page) {
- if (page.orderId) {
- this.orderId = page?.orderId;
- this.spaceId = page?.spaceId;
- this.payeeId = page?.payeeId;
- this.polyOrderId = page?.polyOrderId;
- this.isBack = page?.isBack;
- } else {
- this.tipsMsg = page.msg || '参数丢失!';
- // this.parkingLockStatus = 2
- uni.showModal({
- title: '提示',
- content: (page.msg || '参数丢失') + ',返回首页',
- showCancel: false,
- success: (res) => {
- if (res.confirm) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- }
- }
- });
- }
- },
- onShow() {
- if (this.orderId) {
- this.getOrderDetails(this.spaceId, this.orderId, this.payeeId);
- if (this.polyOrderId && this.isBack == 1) {
- this.timer = setInterval(() => {
- this.show = true;
- this.handlePayStatus(this.polyOrderId);
- }, 1000);
- }
- } else {
- this.show = false;
- }
- },
- onUnload() {
- if (this.timer) {
- clearInterval(this.timer);
- }
- },
- methods: {
- /**
- * 反复查询支付状态
- * @param { String } orderId
- */
- handlePayStatus(orderId) {
- this.$u.api
- .getOrderInfo({
- orderId
- })
- .then((res) => {
- if (res.code === 200) {
- if (res.data.payStatus === 1 || res.data.payStatus === 3) {
- this.show = false;
- clearInterval(this.timer);
- this.is_pay = false;
- uni.showModal({
- title: '提示',
- content: '支付成功,返回首页',
- showCancel: false,
- success: (res) => {
- if (res.confirm) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- }
- }
- });
- } else if (res.data.payStatus === 2) {
- this.is_pay = true;
- }
- } else {
- this.show = false;
- clearInterval(this.timer);
- this.$refs.uToast.show({
- title: res.msg,
- type: 'error'
- });
- }
- })
- .catch(() => {
- this.show = false;
- clearInterval(this.timer);
- });
- },
- /**
- * 立即支付
- */
- payMoney() {
- this.$nextTick(() => {
- this.$refs['choosePayment'].openPopup({ ...this.orderInfo }, 'single', 'road');
- });
- },
- /**
- * 查询订单信息
- * @param { String } spaceId 车位ID
- * @param { String } orderId 订单id
- * @param { String } payeeId 收费员ID
- */
- getOrderDetails(spaceId, orderId, payeeId) {
- this.$u.api
- .geomaLockDetailsApi({
- spaceId,
- orderId,
- payeeId
- })
- .then((res) => {
- if (res.code === 200 && res.data.id) {
- this.payeeName = res.data.payeeName;
- this.parkingLockStatus = 1;
- this.orderInfo = res.data;
- this.show = false;
- if (res.data.payStatus == 0 || res.data.payStatus == 2) {
- this.is_pay = true;
- } else if (res.data.payStatus == 1) {
- this.is_pay = false;
- uni.showModal({
- title: '提示',
- content: '订单已支付,返回首页',
- showCancel: false,
- success: function (res) {
- if (res.confirm) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- }
- }
- });
- }
- } else {
- this.$refs.uToast.show({
- title: res.msg || '订单无数据',
- type: 'error'
- });
- }
- })
- .catch((err) => {
- this.show = false;
- });
- },
- /**
- * 关闭支付弹框
- */
- closePaymentMethod() {
- this.payWayPop = false;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @import './roadGateSystem.scss';
- </style>
|