parent
dcfe4376cf
commit
78bb47f8fc
@ -0,0 +1,48 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: ch
|
||||||
|
* @Date: 2022-03-28 17:16:44
|
||||||
|
* @LastEditors: ch
|
||||||
|
* @LastEditTime: 2022-04-18 17:39:27
|
||||||
|
* @Description: file content
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<image class="icon" src="@/static/order/paySuccess.png"/>
|
||||||
|
<view class="title">交易成功</view>
|
||||||
|
<view class="btns">
|
||||||
|
<UiButton class="btn" type="primaryLine" @click="$Router.replaceAll('/')">返回首页</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: $font-size-lg;
|
||||||
|
line-height: 44rpx;
|
||||||
|
color: $color-grey6;
|
||||||
|
}
|
||||||
|
.desc{
|
||||||
|
font-size: $font-size-sm;
|
||||||
|
line-height: 34rpx;
|
||||||
|
color: $color-grey4;
|
||||||
|
}
|
||||||
|
.btns{
|
||||||
|
margin: 74rpx 105rpx 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue