parent
3c5da7f87e
commit
1ab8f49994
@ -1,44 +0,0 @@
|
||||
<!--
|
||||
* @Author: ch
|
||||
* @Date: 2022-03-28 17:16:44
|
||||
* @LastEditors: ch
|
||||
* @LastEditTime: 2022-04-28 15:34:43
|
||||
* @Description: file content
|
||||
-->
|
||||
<template>
|
||||
<view>
|
||||
<image class="icon" src="@/static/order/payFail.png"/>
|
||||
<view class="title">支付失败</view>
|
||||
<view class="desc">请重新试试</view>
|
||||
<UiButton class="btn">返回商品详情</UiButton>
|
||||
</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;
|
||||
}
|
||||
.btn{
|
||||
margin-top: 74rpx;
|
||||
}
|
||||
</style>
|
@ -1,75 +0,0 @@
|
||||
<!--
|
||||
* @Author: ch
|
||||
* @Date: 2022-03-28 17:16:44
|
||||
* @LastEditors: ch
|
||||
* @LastEditTime: 2022-04-19 18:06:43
|
||||
* @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" @click="$Router.replaceAll('/')">返回首页</UiButton>
|
||||
<UiButton class="btn" type="solid" @click="$Router.replace(`/orderDetail?id=${$Route.query.ordId}`)">查看订单</UiButton>
|
||||
</view>
|
||||
|
||||
<view class="recommend-title">为您推荐</view>
|
||||
<BsChoiceGoods></BsChoiceGoods>
|
||||
</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;
|
||||
}
|
||||
|
||||
.recommend-title{
|
||||
font-size: $font-size-lg;
|
||||
text-align: center;
|
||||
margin: 51rpx auto 30rpx auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 500rpx;
|
||||
&::after,&::before{
|
||||
display: inline-block;
|
||||
content: '';
|
||||
width: 160rpx;
|
||||
height: 2rpx;
|
||||
background: linear-gradient(90deg, $color-grey3 0%, rgba(204, 204, 204, 0) 100%);
|
||||
|
||||
}
|
||||
&::before{
|
||||
|
||||
background: linear-gradient(270deg, $color-grey3 0%, rgba(204, 204, 204, 0) 100%);
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue