uniapp input匹配修改
parent
79a37da568
commit
e7145eb51c
|
@ -114,6 +114,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
validator: (rule, value, callback) => {
|
validator: (rule, value, callback) => {
|
||||||
|
|
||||||
return this.form.userPhone == this.form.confirmPhone
|
return this.form.userPhone == this.form.confirmPhone
|
||||||
},
|
},
|
||||||
message: '手机号不一致',
|
message: '手机号不一致',
|
||||||
|
@ -136,7 +137,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch:{
|
watch:{
|
||||||
|
'form.userPhone' (){
|
||||||
|
this.verify()
|
||||||
|
},
|
||||||
'form.confirmPhone' (){
|
'form.confirmPhone' (){
|
||||||
|
this.verify()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
verify(){
|
||||||
this.$refs.uForm.validate().then(async res => {
|
this.$refs.uForm.validate().then(async res => {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '加载中',
|
title: '加载中',
|
||||||
|
@ -149,10 +158,7 @@
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
methods: {
|
|
||||||
handleMember(value, index) {
|
handleMember(value, index) {
|
||||||
if (!!parseInt(value.isExist)) return
|
if (!!parseInt(value.isExist)) return
|
||||||
if (this.activeIndex.includes(index)) {
|
if (this.activeIndex.includes(index)) {
|
||||||
|
|
Loading…
Reference in New Issue