123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="content">
- <view class="content-result">
- <u-image src="/static/def_pay_success.png" width="250" height="180"></u-image>
- <view class="result-yuyue">预约成功</view>
- <view class="result-yuyueDetail" @click="seeDetail">查看详情</view>
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- methods:{
- seeDetail(){
- uni.switchTab({
- url: '/pages/order/index'
- })
- }
- }
- }
- </script>
- <style lang="less">
- .content{
- width: 100%;
- height: 100vh;
- display: flex;
- text-align: center;
- justify-content: center;
- align-items: center;
- padding: 0;
- .content-result{
- .result-yuyue{
- margin: 40upx 0 140upx;
- font-size: 40upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #222222;
- }
- .result-yuyueDetail{
- height: 80upx;
- line-height: 80upx;
- background: #4F88F7;
- border-radius: 30px;
- color: #fff;
- }
- }
- }
- </style>
|