DDR爱好者之家 Design By 杰米
本文实例为大家分享了小程序表单认证布局及验证的具体代码,供大家参考,具体内容如下
tset.wxml
<view class='form'> <view class='content'> <view class='left'>姓名:</view> <view class='right'> <view class='right-left'> <input placeholder='请输入真实姓名' bindinput='getNameValue' value='{{name}}' /> </view> </view> </view> <view class='content'> <view class='left'>手机号:</view> <view class='right'> <view class='right-left'> <input placeholder='请输入手机号' bindinput='getPhoneValue' value='{{phone}}' /> </view> </view> </view> <view class='content'> <view class='left'>验证码:</view> <view class='right'> <view class='right-left'> <input placeholder='请输入验证码' bindinput='getCodeValue' value='{[code]}' /> </view> <view class='right-right'> <button class='btn'>验证码</button> </view> </view> </view> <!-- wx:if 和wx:else要紧紧在一起 --> <view wx:if='{{upimg}}' class='upimage'> <image class='upimg' src='{{upimg}}'></image> </view> <view wx:else> <view class="upimage" catchtap='uploadimgurl'> <view class='upimage-tips'> <image class="add" src="/UploadFiles/2021-04-02/upimg.png">test.wxss
page { width: 100%; height: 100%; } .content { width: 95%; height: 80rpx; margin: 0 auto; border-bottom: 1rpx solid gray; margin-top: 5%; } .left { width: 20%; height: 80rpx; float: left; text-align: left; line-height: 80rpx; font-size: 30rpx; } .right { width: 80%; height: 80rpx; float: right; text-align: left; line-height: 80rpx; } .right-left input { float: left; text-align: left; height: 80rpx; } .right-right { width: 30%; float: right; height: 80rpx; } .btn { height: 80rpx; font-size: 28rpx; border: 1rpx solid greenyellow; } .upimage { background-color: #f2f2f2; border: 1rpx solid #ccc; width: 80%; /* margin-top: 10%; */ height: 300rpx; border-radius: 10rpx; margin: 50rpx auto; } .upimg { width: 100%; height: 300rpx; } .upimage-tips { height: 80rpx; line-height: 80px; text-align: center; margin: 50rpx auto; } .upimage-tips text { font-size: 30rpx; color: darkgray; } .add { width: 80rpx; height: 80rpx; align-items: center; /* position: fixed; */ margin: 0 auto; line-height: 80px; text-align: center; } .changeBtn { width: 100%; align-items: center; background: #1eb31c; color: #fff; position: fixed; bottom: 0; line-height: 100rpx; left: 0; }验证必填信息不能为空
test.js
//logs.js Page({ /** * 页面的初始数据 */ data: { name: '',//姓名 phone: '',//手机号 code: '',//验证码 iscode: null,//用于存放验证码接口里获取到的code upimg: "", codename: "获取验证码", }, //获取input输入框的值 getNameValue: function (e) { this.setData({ name: e.detail.value }) }, getPhoneValue: function (e) { this.setData({ phone: e.detail.value }) }, getCodeValue: function (e) { this.setData({ code: e.detail.value }) }, getCode: function () { var a = this.data.phone; var _this = this; var myreg = /^(14[0-9]|13[0-9]|15[0-9]|17[0-9]|18[0-9])\d{8}$$/; if (this.data.phone == "") { wx.showToast({ title: '手机号不能为空', icon: 'none', duration: 1000 }) return false; } else if (!myreg.test(this.data.phone)) { wx.showToast({ title: '请输入正确的手机号', icon: 'none', duration: 1000 }) return false; } else { wx.request({ data: {}, 'url': 接口地址, success(res) { console.log(res.data.data) _this.setData({ iscode: res.data.data }) var num = 61; var timer = setInterval(function () { num--; if (num <= 0) { clearInterval(timer); _this.setData({ codename: '重新发送', disabled: false }) } else { _this.setData({ codename: num + "s" }) } }, 1000) } }) } }, //获取验证码 getVerificationCode() { this.getCode(); var _this = this _this.setData({ disabled: true }) }, //提交表单信息 save: function () { var myreg = /^(14[0-9]|13[0-9]|15[0-9]|17[0-9]|18[0-9])\d{8}$$/; if (this.data.name == "") { wx.showToast({ title: '姓名不能为空', icon: 'none', duration: 1000 }) return false; } if (this.data.phone == "") { wx.showToast({ title: '手机号不能为空', icon: 'none', duration: 1000 }) return false; } else if (!myreg.test(this.data.phone)) { wx.showToast({ title: '请输入正确的手机号', icon: 'none', duration: 1000 }) return false; } if (this.data.code == "") { wx.showToast({ title: '验证码不能为空', icon: 'none', duration: 1000 }) return false; } else if (this.data.code != this.data.iscode) { wx.showToast({ title: '验证码错误', icon: 'none', duration: 1000 }) return false; } else { wx.setStorageSync('name', this.data.name); wx.setStorageSync('phone', this.data.phone); wx.redirectTo({ url: '../add/add', }) } if (this.data.upimg == "") { wx.showToast({ title: '营业执照不能为空', icon: 'none', duration: 1000 }) return false; } }, //上传照片 uploadimgurl: function () { var that = this; var upimg = that.data.upimg; //选择照片 wx.chooseImage({ success(res) { var tempFilePaths = res.tempFilePaths that.setData({ upimg: tempFilePaths, }) } }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, })为大家推荐现在关注度比较高的微信小程序教程一篇:《微信小程序开发教程》小编为大家精心整理的,希望喜欢。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年12月26日
2024年12月26日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]