|
@@ -129,10 +129,6 @@
|
|
|
:value="orderInfo.paySource | verifyPaySource"
|
|
|
/>
|
|
|
</u-cell-group>
|
|
|
- <!-- 地磁订单金额为0并且未支付 -->
|
|
|
- <view class v-if="orderInfo.deviceType == 1 && orderInfo.payAmount == 0 && orderInfo.payStatus !== 1"
|
|
|
- >提示:可寻找附近的收费员打印小票并扫码出场</view
|
|
|
- >
|
|
|
</view>
|
|
|
<!-- 地磁显示支付按钮条件 支付状态(0-未支付,2-支付中,3-支付失败)并且订单金额不能为0 -->
|
|
|
<template v-if="orderInfo.deviceType === 1 && orderInfo.payStatus !== 1 && openFlag !== 'open'">
|
|
@@ -151,7 +147,7 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
</template>
|
|
|
- <!-- 其他显示支付按钮条件 支付状态(0-未支付,2-支付中,3-支付失败) 订单类型非停车场 -->
|
|
|
+ <!-- 其他显示支付按钮条件 支付状态(0-未支付,2-支付中,3-支付失败) 订单类型非停车场 设备类型(1-地磁,2-车位锁,3-PDA,4-道闸) -->
|
|
|
<template v-else-if="orderInfo.deviceType !== 1 && orderInfo.payStatus !== 1 && openFlag !== 'open' && orderType !== 'park'">
|
|
|
<view class="bottom-btn-wrap">
|
|
|
<view class="bottom-btn" @click="goPay(orderId)">去支付</view>
|