mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 14:19:38 +08:00
::1
This commit is contained in:
parent
4f35ab7f12
commit
c70540e9a6
@ -1,3 +1,5 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
"usingComponents": {
|
||||
"van-field": "@vant/weapp/field/index"
|
||||
}
|
||||
}
|
@ -5,7 +5,8 @@ Page({
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
value: '',
|
||||
discountShow:false
|
||||
},
|
||||
|
||||
/**
|
||||
@ -52,6 +53,10 @@ Page({
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
onChange(event) {
|
||||
// event.detail 为当前输入的值
|
||||
console.log(event.detail);
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
|
@ -1,3 +1,8 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
"usingComponents": {
|
||||
"van-field": "@vant/weapp/field/index",
|
||||
"van-picker": "@vant/weapp/picker/index",
|
||||
"van-popup": "@vant/weapp/popup/index"
|
||||
}
|
||||
|
||||
}
|
@ -1,2 +1,69 @@
|
||||
<!--pages/meeting/visitorIinvitation/visitorIinvitation.wxml-->
|
||||
<text>pages/meeting/visitorIinvitation/visitorIinvitation.wxml</text>
|
||||
<view class="container">
|
||||
<view class="titleView">
|
||||
<view class="title">请填写访客信息</view>
|
||||
</view>
|
||||
<view class="inputView">
|
||||
<van-cell-group>
|
||||
<van-field
|
||||
label="被访人姓名"
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="被访人电话"
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="被访单位"
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="访客姓名"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="手机号码"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="身份证号"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="到访时间"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="离开时间"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
<van-field
|
||||
label="来访事由"
|
||||
required
|
||||
model:value="{{ value }}"
|
||||
placeholder="请输入"
|
||||
border="{{ true }}"
|
||||
input-align="right" />
|
||||
</van-cell-group>
|
||||
</view>
|
||||
</view>
|
@ -1 +1,22 @@
|
||||
/* pages/meeting/visitorIinvitation/visitorIinvitation.wxss */
|
||||
.container{
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
height: 100vh;
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
.titleView {
|
||||
border-left: 8rpx solid #2A6FFF;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 40rpx 30rpx 0;
|
||||
}
|
||||
.titleView .title{
|
||||
margin-left: 10rpx;
|
||||
font-size: 26rpx;
|
||||
font-weight: 400;
|
||||
color: #666666;
|
||||
}
|
||||
.inputView{
|
||||
margin-top: 20rpx;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user