127 lines
3.4 KiB
Vue
127 lines
3.4 KiB
Vue
<template>
|
|
<view class="main" :style="{background:'url('+'../../static/image/login-bg.png'+')'}">
|
|
<image
|
|
src="@/static/image/paySuccess.png"
|
|
mode="scaleToFill"
|
|
style="width:218rpx;height:54rpx;margin-top:150rpx"
|
|
/>
|
|
<view class="info">
|
|
<view>
|
|
<image src="../../static/bbj1@3x.png" mode="scaleToFill" style="width:191rpx;height:146rpx" />
|
|
</view>
|
|
<view class="info-right">
|
|
<view class="info-right-item">
|
|
<view class="title">画作编号</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">画作名称</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">画家名称</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">画作平尺数</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="order-info">
|
|
<view class="info-right-item">
|
|
<view class="title">订单编号</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">寄存地址</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">寄存时限</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
<view class="info-right-item">
|
|
<view class="title">付款金额</view>
|
|
<view class="content">12313123</view>
|
|
</view>
|
|
</view>
|
|
<view class="tips">*请携带您的画作在时限之前到达寄存地</view>
|
|
<view class="btns">
|
|
<view style="width: 280rpx;height:64rpx;border-radius: 40rpx;">
|
|
<u-button text="返回首页" shape="circle" color="#626262"></u-button>
|
|
</view>
|
|
<view style="width: 280rpx;height:64rpx;border-radius: 40rpx">
|
|
<u-button text="查看订单详情" shape="circle" color="#699A70"></u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.main {
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: start;
|
|
align-items: center;
|
|
padding: 32rpx;
|
|
flex-direction: column;
|
|
.info-right-item {
|
|
color: #626262;
|
|
display: flex;
|
|
align-items: center;
|
|
.title {
|
|
padding-right: 56rpx;
|
|
border-right: 1rpx solid #e4eaf1;
|
|
}
|
|
.content {
|
|
padding-left: 34rpx;
|
|
}
|
|
}
|
|
.info {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
width: 100%;
|
|
height: 292rpx;
|
|
border-radius: 20rpx;
|
|
background: #fff;
|
|
margin-top: 182rpx;
|
|
padding: 20rpx;
|
|
.info-right {
|
|
width: 100%;
|
|
margin-left: 34rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #626262;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
.order-info {
|
|
box-sizing: border-box;
|
|
margin-top: 20rpx;
|
|
width: 100%;
|
|
height: 292rpx;
|
|
border-radius: 20rpx;
|
|
padding: 22rpx 40rpx;
|
|
background: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.tips {
|
|
color: #76c458;
|
|
margin-top: 170rpx;
|
|
}
|
|
.btns {
|
|
margin-top: 40rpx;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
</style> |