完善提示
This commit is contained in:
parent
3e0b1593c5
commit
9c0b3ed736
|
|
@ -69,7 +69,7 @@
|
|||
<view class="cu-form-group">
|
||||
<view class="title">验证码</view>
|
||||
<input name="identifyCode" placeholder="请输入验证码"></input>
|
||||
<button class='cu-btn bg-main-color shadow'>获取验证码</button>
|
||||
<button class='cu-btn bg-main-color shadow' @click="getPhoneVertifyNum">获取验证码</button>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">关联信息</view>
|
||||
|
|
@ -112,6 +112,12 @@
|
|||
url: '/pages/my/contract'
|
||||
})
|
||||
},
|
||||
getPhoneVertifyNum() {
|
||||
uni.showToast({
|
||||
title: '功能开发中,暂无法使用',
|
||||
icon: 'none'
|
||||
})
|
||||
},
|
||||
validateForm(confirmFormData) {
|
||||
let formInfoValid = Boolean(confirmFormData.name) &&
|
||||
Boolean(confirmFormData.phone) &&
|
||||
|
|
@ -148,13 +154,17 @@
|
|||
let formValid = this.validateForm(formData);
|
||||
console.log(formData);
|
||||
if (formValid) {
|
||||
// uni.showToast({
|
||||
// title: '保存成功',
|
||||
// icon: 'success',
|
||||
// mask: true
|
||||
// })
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/my/my-operator'
|
||||
// })
|
||||
uni.showToast({
|
||||
title: '保存成功',
|
||||
icon: 'success',
|
||||
mask: true
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/my-operator'
|
||||
title: '功能开发中,暂无法使用',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -69,13 +69,17 @@
|
|||
async loadData() {
|
||||
this.myMoneyBag = await this.$api.data('myMoneyBag');
|
||||
// 查询账单
|
||||
let billRes = await this.$request.qryFinancialCount();
|
||||
this.bill = billRes.data;
|
||||
for (let i = 0; i < this.bill.length; i++) {
|
||||
this.openStatusArr.push('1');
|
||||
}
|
||||
// let billRes = await this.$request.qryFinancialCount();
|
||||
// this.bill = billRes.data;
|
||||
// for (let i = 0; i < this.bill.length; i++) {
|
||||
// this.openStatusArr.push('1');
|
||||
// }
|
||||
this.curUserInfo = this.$request.getCurUserInfo();
|
||||
this.loadBindBankCard();
|
||||
uni.showToast({
|
||||
title: '功能开发中,暂无法使用',
|
||||
icon: 'none'
|
||||
})
|
||||
},
|
||||
async reloadData() {
|
||||
this.loadBindBankCard();
|
||||
|
|
|
|||
Loading…
Reference in New Issue