增加暂未开启功能展示

This commit is contained in:
GaoHao
2024-12-24 18:10:02 +08:00
parent fef62822c3
commit 1fee3f3d0f
3 changed files with 80 additions and 2 deletions

View File

@@ -22,13 +22,21 @@
}
},
{
"path": "pages/task/prizeList",
"path": "pages/task/stayTuned",
"style": {
"navigationBarTitleText": "任务",
"navigationStyle": "custom"
}
},
{
"path": "pages/task/prizeList",
"style": {
"navigationBarTitleText": "任务",
"navigationStyle": "custom"
}
},
{
"path": "pages/task/receiveMember",
"style": {

View File

@@ -322,7 +322,7 @@
<style lang="scss">
.container {
width: 100%;
height: 100vh;
min-height: 100vh;
background-color: #F3F4F8;
.task_bg {
width: 100% !important;

70
pages/task/stayTuned.vue Normal file
View File

@@ -0,0 +1,70 @@
<!-- 任务中心 -->
<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>