1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <template>
| <!-- 提交成功 -->
| <view class="flex flex-v align-center">
| <image class="img" mode="aspectFit" src="../../static/images/succeed.png"></image>
| <text class="font-16">提交成功请到前台付款</text>
| <button class="blue-btn btn mt-20">查看详情</button>
| <button class="white-btn btn mt-20">返回首页</button>
| </view>
| </template>
|
| <script>
| </script>
|
| <style>
| .img{
| width:200px;
| }
| .btn{
| padding: 0 40px;
| }
| </style>
|
|