|
@@ -16,23 +16,29 @@ import {
|
|
|
imports: [...ionicStandaloneModules, NavComponent, CommonModule, FormsModule],
|
|
|
})
|
|
|
export class WithdrawalComponent implements OnInit {
|
|
|
- constructor(private toastController: ToastController,
|
|
|
- private aiServ: AiChatService,
|
|
|
- ) {}
|
|
|
+ constructor(
|
|
|
+ private toastController: ToastController,
|
|
|
+ private aiServ: AiChatService
|
|
|
+ ) {}
|
|
|
price: number = 0;
|
|
|
- balance:number = 0;
|
|
|
- bankinfo: any = {
|
|
|
- bankcard: '',
|
|
|
+ balance: number = 0;
|
|
|
+ bankinfo: {
|
|
|
+ bankname: string;
|
|
|
+ name: string;
|
|
|
+ mobile: string;
|
|
|
+ bankcard: string;
|
|
|
+ } = {
|
|
|
+ bankname: '',
|
|
|
name: '',
|
|
|
- idcard: '',
|
|
|
mobile: '',
|
|
|
+ bankcard: '',
|
|
|
};
|
|
|
data: any = [
|
|
|
{ value: 0, name: '银行卡' },
|
|
|
{ value: 1, name: '微信' },
|
|
|
];
|
|
|
value: Number = 0;
|
|
|
- account?: Parse.Object
|
|
|
+ account?: Parse.Object;
|
|
|
ngOnInit() {
|
|
|
this.getAccount();
|
|
|
}
|
|
@@ -42,15 +48,19 @@ export class WithdrawalComponent implements OnInit {
|
|
|
query.equalTo('user', id);
|
|
|
query.equalTo('company', this.aiServ.company);
|
|
|
this.account = await query.first();
|
|
|
- if(this.account?.get('bank')){
|
|
|
+ if (this.account?.get('bank')) {
|
|
|
this.bankinfo = this.account?.get('bank')[0];
|
|
|
}
|
|
|
console.log(this.account);
|
|
|
- let anthorWallet = await this.aiServ.getAuthorWallet(id!)
|
|
|
- this.balance = anthorWallet.balance
|
|
|
+ let anthorWallet = await this.aiServ.getAuthorWallet(id!);
|
|
|
+ this.balance = anthorWallet.balance;
|
|
|
}
|
|
|
async withdrawal() {
|
|
|
- if (!this.bankinfo.name || !this.bankinfo.bankcard || !this.bankinfo.mobile) {
|
|
|
+ if (
|
|
|
+ !this.bankinfo.bankname ||
|
|
|
+ !this.bankinfo.bankcard ||
|
|
|
+ !this.bankinfo.mobile
|
|
|
+ ) {
|
|
|
this.toast('请先绑定银行卡', 1500);
|
|
|
return;
|
|
|
}
|