Merge remote-tracking branch 'origin/feature/mall_product' into feature/mall_product
commit
f9a503248e
|
@ -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,23 +137,28 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch:{
|
watch:{
|
||||||
|
'form.userPhone' (){
|
||||||
|
this.verify()
|
||||||
|
},
|
||||||
'form.confirmPhone' (){
|
'form.confirmPhone' (){
|
||||||
this.$refs.uForm.validate().then(async res => {
|
this.verify()
|
||||||
uni.showLoading({
|
|
||||||
title: '加载中',
|
|
||||||
mask: true
|
|
||||||
});
|
|
||||||
try{
|
|
||||||
const res = await memberByHomeGradeInfo(this.form.confirmPhone)
|
|
||||||
this.memberData = res.data
|
|
||||||
} finally{
|
|
||||||
uni.hideLoading();
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
verify(){
|
||||||
|
this.$refs.uForm.validate().then(async res => {
|
||||||
|
uni.showLoading({
|
||||||
|
title: '加载中',
|
||||||
|
mask: true
|
||||||
|
});
|
||||||
|
try{
|
||||||
|
const res = await memberByHomeGradeInfo(this.form.confirmPhone)
|
||||||
|
this.memberData = res.data
|
||||||
|
} finally{
|
||||||
|
uni.hideLoading();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
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