微信小程序 input表单与redio及下拉列表的使用实例
一个简单的预约类型的表单,效果
主要代码:
Box">
<view class="row-wrap">
<view class="label">性别</view>
<ra<a href="https://www.jb51.cc/tag/dio/" target="_blank" class="keywords">dio</a>-group class="ra<a href="https://www.jb51.cc/tag/dio/" target="_blank" class="keywords">dio</a>-group" bindchange="ra<a href="https://www.jb51.cc/tag/dio/" target="_blank" class="keywords">dio</a>Change">
<label class="ra<a href="https://www.jb51.cc/tag/dio/" target="_blank" class="keywords">dio</a>" wx:for="{{items}}">
<radio value="{{item.name}}" checked="{{item.checked}}" />{{item.value}}
</label>
</radio-group>
</view>
<view class="row-wrap">
<view class="label">手机号码</view>
<view class="label-right">
<input name="mobile" class="input" maxlength="11" type="number" placeholder="11位手机号码" value="{{addressData.mobile}}" />
</view>
</view>
<view class="row-wrap">
<view class="label">预约项目</view>
<picker bindchange="bindCasPickerChange" value="{{casIndex1}}" range="{{casArray}}">
<view>
<text>{{casArray[casIndex]}}</text>
</view>
</picker>
</view>
<view class="btn-tyc">
<button size="mini" bindtap="tapAddCart" class="submit" type="primary" formType="submit">提交预约</button>
<button size="mini" bindtap="tlp_phone" class="phone" type="primary">拨打电话
.js文件
dioChange: function (e) {
console.log('值:',e.detail.value)
this.setData({
Gender: e.detail.value
})
},/**
* 生命周期函数--监听页面加载
*/
bindCasPickerChange: function (e) {
console.log(this.data.casArray);
console.log('下拉选择的是',this.data.casArray[e.detail.value])
this.setData({
casIndex: e.detail.value
})
},
参照官方文档form组件
https://mp.weixin.qq.com/debug/wxadoc/dev/component/form.html
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/weapp/36246.html