queenwuli
2020-12-27 cc499362b6eba119792e113796e4da029a70fc6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
    <!-- 提交成功 -->
    <view class="flex flex-v align-center">
        <image class="img" mode="aspectFit" src="../../static/images/succeed.png"></image>
        <text class="font-16">提交成功请到前台付款</text>
        <view class="sticky-footer">
            <navigator url="./orderList">
                <button class="blue-btn btn">查看详情</button>
            </navigator>
            <navigator url="./index" open-type="switchTab">
                <button class="white-btn btn mt-15">返回首页</button>
            </navigator>
        </view>
    </view>
</template>
 
<script>
    export default{
        onBackPress(options) {
            if (options.from === 'navigateBack') {  
                return false;  
            }  
            uni.switchTab({
                url: "./index"
            })
            return true;  
        },
    }
</script>
 
<style>
    .img{
        width:200px;
        height: 150px;
        margin-top: 50px;
    }
</style>