This commit is contained in:
2021-10-25 16:23:23 +08:00
parent 2bc9ea63c0
commit ad67333bbf
17 changed files with 202 additions and 218 deletions

View File

@@ -44,12 +44,12 @@
export default {
data() {
return {
balance: 0, // 钱包能量球金额
balance: 0, // 钱包通证金额
tax: 0, // 当前手续费
cost: 1, // 每个能量球的价格
cost: 1, // 每个通证的价格
total: 0, // 约合人民币
card: '', // 银行卡号
withdraw_input: '', // 提现能量球金额
withdraw_input: '', // 提现通证金额
bank_accounts: 0,
bankInfo: {}
};
@@ -81,7 +81,7 @@
})
})
},
// 输入提现能量球金额
// 输入提现通证金额
inputNum(e) {
let number = Number(e.detail.value)
console.log(number, this.balance)
@@ -140,7 +140,7 @@
}
if (data.amount === 0) {
uni.showToast({
title: '请输入能量球金额',
title: '请输入通证金额',
icon: 'none'
})
return;