diff --git a/app.json b/app.json index 0f5caa1..c2e050f 100644 --- a/app.json +++ b/app.json @@ -28,7 +28,8 @@ "root": "subpages/index", "name": "index", "pages": [ - "renewalApplication/renewalApplication" + "renewalApplication/renewalApplication", + "checkInUser/checkInUser" ] } ], diff --git a/images/bg02.png b/images/bg02.png new file mode 100644 index 0000000..c0d2da4 Binary files /dev/null and b/images/bg02.png differ diff --git a/images/icon_1.png b/images/icon_1.png new file mode 100644 index 0000000..2045fe0 Binary files /dev/null and b/images/icon_1.png differ diff --git a/project.private.config.json b/project.private.config.json index 7c7125f..6c5072e 100644 --- a/project.private.config.json +++ b/project.private.config.json @@ -14,6 +14,13 @@ "condition": { "miniprogram": { "list": [ + { + "name": "subpages/index/checkInUser/checkInUser", + "pathName": "subpages/index/checkInUser/checkInUser", + "query": "", + "launchMode": "default", + "scene": null + }, { "name": "subpages/index/renewalApplication/renewalApplication", "pathName": "subpages/index/renewalApplication/renewalApplication", diff --git a/subpages/index/checkInUser/checkInUser.js b/subpages/index/checkInUser/checkInUser.js new file mode 100644 index 0000000..face4e7 --- /dev/null +++ b/subpages/index/checkInUser/checkInUser.js @@ -0,0 +1,66 @@ +// subpages/index/checkInUser/checkInUser.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/subpages/index/checkInUser/checkInUser.json b/subpages/index/checkInUser/checkInUser.json new file mode 100644 index 0000000..aababa9 --- /dev/null +++ b/subpages/index/checkInUser/checkInUser.json @@ -0,0 +1,10 @@ +{ + "navigationStyle": "custom", + "usingComponents": { + "navigationBar": "/components/navigationBar/navigationBar", + "van-image": "@vant/weapp/image/index", + "van-button": "@vant/weapp/button/index", + "van-cell": "@vant/weapp/cell/index", + "van-cell-group": "@vant/weapp/cell-group/index" + } +} \ No newline at end of file diff --git a/subpages/index/checkInUser/checkInUser.wxml b/subpages/index/checkInUser/checkInUser.wxml new file mode 100644 index 0000000..4b37733 --- /dev/null +++ b/subpages/index/checkInUser/checkInUser.wxml @@ -0,0 +1,26 @@ + + + + + + 身份信息 + 请您确认您的身份信息 + + + + + + + + + + + + + + + 下一步 + + + + \ No newline at end of file diff --git a/subpages/index/checkInUser/checkInUser.wxss b/subpages/index/checkInUser/checkInUser.wxss new file mode 100644 index 0000000..1195d90 --- /dev/null +++ b/subpages/index/checkInUser/checkInUser.wxss @@ -0,0 +1,46 @@ +/* subpages/index/checkInUser/checkInUser.wxss */ +page { + background: #f8f8f8; +} + +.cont { + background: #f8f8f8; + height: 80vh; + position: relative; +} + +.header { + height: 240rpx; + padding: 0rpx 64rpx 0 40rpx; +} + +.tit { + font-size: 44rpx; + font-weight: 600; + margin-top: 40rpx; +} + +.des { + font-size: 28rpx; + color: #666666; + line-height: 60rpx; +} + +.info { + margin-top: -80rpx; + +} + +.btn { + position: absolute; + bottom: -80rpx; + left: 0; + right: 0; + max-width: 440rpx; + width: calc(100% - 10rpx); + height: 80rpx; + margin: auto; +} +.van-cell{ + /* line-height: 54rpx !important; */ +}