Commit 8121013f authored by 罗超's avatar 罗超

1

parent 632d023f
...@@ -585,10 +585,19 @@ ...@@ -585,10 +585,19 @@
class="jz_OrderReNow" class="jz_OrderReNow"
@click="goCancel" @click="goCancel"
style="background: #fff; color: #111; border: 1px solid #111" style="background: #fff; color: #111; border: 1px solid #111"
v-if="showPayBtn"
> >
<text v-if="!submitCancel">取消</text> <text v-if="!submitCancel">取消</text>
<u-loading v-if="submitCancel" size="32" color="#111"></u-loading> <u-loading v-if="submitCancel" size="32" color="#111"></u-loading>
</view> </view>
<!-- 返回上一页 -->
<view
class="jz_OrderReNow"
@click="goback"
style="background: #fff; color: #111; border: 1px solid #111"
v-if="!showPayBtn"
>取消
</view>
</view> </view>
<view style="display: flex; margin-left: 30rpx"> <view style="display: flex; margin-left: 30rpx">
<!-- #ifdef MP-WEIXIN --> <!-- #ifdef MP-WEIXIN -->
...@@ -638,6 +647,11 @@ export default { ...@@ -638,6 +647,11 @@ export default {
} }
}, },
methods: { methods: {
goback() {
uni.navigateBack({
delta: 1,
});
},
goCancel() { goCancel() {
if (this.submit || this.submitCancel) return; if (this.submit || this.submitCancel) return;
//未付款-调用后台取消 //未付款-调用后台取消
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment