Browse Source

入住办理-信息确认

epass
wangyx 3 months ago
parent
commit
5aff9bd4ee
  1. 3
      app.json
  2. BIN
      images/bg02.png
  3. BIN
      images/icon_1.png
  4. 7
      project.private.config.json
  5. 66
      subpages/index/checkInUser/checkInUser.js
  6. 10
      subpages/index/checkInUser/checkInUser.json
  7. 26
      subpages/index/checkInUser/checkInUser.wxml
  8. 46
      subpages/index/checkInUser/checkInUser.wxss

3
app.json

@ -28,7 +28,8 @@
"root": "subpages/index",
"name": "index",
"pages": [
"renewalApplication/renewalApplication"
"renewalApplication/renewalApplication",
"checkInUser/checkInUser"
]
}
],

BIN
images/bg02.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

BIN
images/icon_1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

7
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",

66
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() {
}
})

10
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"
}
}

26
subpages/index/checkInUser/checkInUser.wxml

@ -0,0 +1,26 @@
<!--subpages/index/checkInUser/checkInUser.wxml-->
<navigationBar title="入住办理" isSowArrow isShowBg="" titleAlign="center"></navigationBar>
<view class="cont">
<view class="header flex flex-sb flex-center-j " style="background-image:url(/images/bg02.png);">
<view class="flex flex-col ">
<view class="tit">身份信息</view>
<view class="des">请您确认您的身份信息</view>
</view>
<van-image width="82" height="82" src="/images/icon_1.png" custom-class="cusImage" />
</view>
<view class="info">
<van-cell-group inset>
<van-cell title="姓名" value="张军" border />
<van-cell title="身份证" value="370832199602000040" border />
<van-cell title="手机号" value="13669603020" />
</van-cell-group>
</view>
<view class="btn">
<van-button slot="button" block type="primary" round color="linear-gradient(to right, #0DC6C6 , #46DBD5)" bind:tap="submit">
下一步
</van-button>
</view>
</view>

46
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; */
}
Loading…
Cancel
Save