46 lines
845 B
Vue
46 lines
845 B
Vue
<template>
|
|
<view class="content">
|
|
<view class="info">
|
|
<u-image width="203rpx" height="184rpx" :src="img"></u-image>
|
|
<view class="text">包裹已整装待发~</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { getInfo } from '@/common/api.js'
|
|
import img from '@/static/icon.png'
|
|
export default {
|
|
data() {
|
|
return {
|
|
img: img
|
|
}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
height: 100vh;
|
|
background: url(../../static/bgi.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
padding: 52rpx 25rpx 34rpx;
|
|
.info {
|
|
height: 100%;
|
|
padding-top: 206rpx;
|
|
background-color: #ffffff;
|
|
border-radius: 15px;
|
|
.u-image {
|
|
margin: auto;
|
|
}
|
|
.text {
|
|
margin-top: 40rpx;
|
|
color: #666666;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|