Files
jinhuaihua-h5/pages/index/fillForm.vue

46 lines
845 B
Vue
Raw Normal View History

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