报名成功图标替换 报名未开始页面加入

This commit is contained in:
fengachen
2021-10-19 21:35:00 +08:00
parent 167af66c23
commit 83915dcf4e
8 changed files with 162 additions and 8 deletions
+66
View File
@@ -0,0 +1,66 @@
// pages/cannotSignUp/cannotSignUp.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
+3
View File
@@ -0,0 +1,3 @@
{
"usingComponents": {}
}
+19
View File
@@ -0,0 +1,19 @@
<!--pages/cannotSignUp/cannotSignUp.wxml-->
<view class="container-box">
<!-- 身份为非成员的;缴费方式为汇款/线上缴费的,报完名跳转到审核 -->
<!-- 不需要审核的显示 -->
<view class="audit">
<image class="img" src="../../assets/images/signUpSuccess.png"></image>
<view>报名未开始或已结束</view>
</view>
<!-- <view class="exit-wrap">
<view class="exit">
<navigator target="miniProgram" open-type="exit">我知道了</navigator>
</view>
</view> -->
</view>
+41
View File
@@ -0,0 +1,41 @@
/* pages/cannotSignUp/cannotSignUp.wxss */
/* pages/signUpSuccess/signUpSuccess.wxss */
/* 不需要审核的报名提示样式 */
.audit {
text-align: center;
width: 100%;
margin-top: 100px;
font-size: 16px;
}
.audit image.img {
width: 156px;
height: 146px;
max-width: 100%;
margin-bottom: 10px;
}
/* 需要审核的样式 */
/* 我知道了的样式 */
.exit-wrap {
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
}
.exit {
margin: 0 auto;
text-align: center;
color: #fff;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 4px;
letter-spacing: 2px;
background: #069F99;
}