|
|
|
@ -2,15 +2,17 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-05-08 01:11:33
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-05-09 22:27:35
|
|
|
|
|
* @LastEditTime: 2022-05-10 15:48:51
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="c-white-main" style="padding-top:350px">
|
|
|
|
|
<div class="main">
|
|
|
|
|
<img class="icon" src="@/assets/img/order/pay_success.png" />
|
|
|
|
|
<p>交易成功</p>
|
|
|
|
|
<b>交易成功</b>
|
|
|
|
|
<p>您的包裹整装待发~</p>
|
|
|
|
|
<div>
|
|
|
|
|
<UiButton type="grey" @click="goHome" :radius="true">返回首页</UiButton>
|
|
|
|
|
<UiButton type="yellow_gradual" @click="goDetail" :radius="true">查看订单</UiButton>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
@ -43,20 +45,30 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
goHome(){
|
|
|
|
|
this.$router.replace('/');
|
|
|
|
|
},
|
|
|
|
|
goDetail(){
|
|
|
|
|
this.$router.replace(`/account/order/detail?id=${this.$route.query.id}`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.c-white-main{
|
|
|
|
|
.main{
|
|
|
|
|
@include layout-box;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
padding: 100px 0 40px;
|
|
|
|
|
}
|
|
|
|
|
.icon{
|
|
|
|
|
width: 239px;
|
|
|
|
|
}
|
|
|
|
|
b{
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
p{
|
|
|
|
|
margin: 10px 0 25px 0;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
button{
|
|
|
|
|
margin: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|