70 lines
1.1 KiB
Vue
70 lines
1.1 KiB
Vue
<!-- 任务中心 -->
|
|
<template>
|
|
<view class="container">
|
|
<u-navbar :background="background" :is-back="true" :title="title" :border-bottom="false"></u-navbar>
|
|
<view class="centre">
|
|
<image src="../../static/images/learn/none.png" mode=""></image>
|
|
<view class="tips">
|
|
活动正在进行中~敬请期待开奖结果
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
data() {
|
|
return {
|
|
title: '',
|
|
background: {
|
|
backgroundImage: 'transparent'
|
|
},
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
|
|
},
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.centre {
|
|
text-align: center;
|
|
padding: 200rpx 0;
|
|
font-size: 32rpx;
|
|
box-sizing: border-box;
|
|
|
|
image {
|
|
width: 360rpx;
|
|
height: 360rpx;
|
|
// margin-bottom: 20rpx;
|
|
margin: 0 auto 20rpx;
|
|
// border: 1px dotted #000000;
|
|
}
|
|
|
|
.tips {
|
|
font-size: 34rpx;
|
|
color: #999999;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.btn {
|
|
margin: 80rpx auto;
|
|
width: 600rpx;
|
|
border-radius: 32rpx;
|
|
line-height: 90rpx;
|
|
color: #ffffff;
|
|
font-size: 34rpx;
|
|
background: #ff7581;
|
|
}
|
|
}
|
|
|
|
|
|
</style> |