8 changed files with 157 additions and 1 deletions
After Width: | Height: | Size: 197 KiB |
After Width: | Height: | Size: 28 KiB |
@ -0,0 +1,66 @@ |
|||||
|
// subpages/index/checkInUser/checkInUser.js
|
||||
|
Page({ |
||||
|
|
||||
|
/** |
||||
|
* 页面的初始数据 |
||||
|
*/ |
||||
|
data: { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 生命周期函数--监听页面加载 |
||||
|
*/ |
||||
|
onLoad(options) { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 生命周期函数--监听页面初次渲染完成 |
||||
|
*/ |
||||
|
onReady() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 生命周期函数--监听页面显示 |
||||
|
*/ |
||||
|
onShow() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 生命周期函数--监听页面隐藏 |
||||
|
*/ |
||||
|
onHide() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 生命周期函数--监听页面卸载 |
||||
|
*/ |
||||
|
onUnload() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 页面相关事件处理函数--监听用户下拉动作 |
||||
|
*/ |
||||
|
onPullDownRefresh() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 页面上拉触底事件的处理函数 |
||||
|
*/ |
||||
|
onReachBottom() { |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
/** |
||||
|
* 用户点击右上角分享 |
||||
|
*/ |
||||
|
onShareAppMessage() { |
||||
|
|
||||
|
} |
||||
|
}) |
@ -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" |
||||
|
} |
||||
|
} |
@ -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> |
@ -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…
Reference in new issue