You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
959 B
50 lines
959 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-03-28 17:16:44
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-03-28 17:45:51
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<view>
|
|
<image class="icon" src="@/static/order/paySuccess.png"/>
|
|
<view class="title">支付成功</view>
|
|
<view class="desc">您的包裹整装待发</view>
|
|
<view class="btns">
|
|
<UiButton class="btn" type="primaryLine">返回首页</UiButton>
|
|
<UiButton class="btn" type="solid">查看订单</UiButton>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import UiButton from '@/components/UiButton.vue'
|
|
export default {
|
|
components: { UiButton },
|
|
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
page{
|
|
text-align: center;
|
|
}
|
|
.icon{
|
|
width: 400rpx;
|
|
height: 256rpx;
|
|
margin: 169rpx auto 42rpx;
|
|
}
|
|
.title{
|
|
font-size: 32rpx;
|
|
line-height: 44rpx;
|
|
color: #333;
|
|
}
|
|
.desc{
|
|
font-size: 24rpx;
|
|
line-height: 34rpx;
|
|
color: #999;
|
|
}
|
|
.btns{
|
|
margin: 74rpx 105rpx 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
</style> |