| | |
| | | </div> |
| | | |
| | | <div class="action-buttons"> |
| | | <el-button |
| | | type="success" |
| | | class="deposit-btn" |
| | | @click="trasferireVisible = true" |
| | | > |
| | | <div class="flex-center"> |
| | | <img src="@/assets/images/account_hz.png" alt="Deposit" /> |
| | | {{ $t("劃轉") }} |
| | | </div> |
| | | </el-button> |
| | | <el-button |
| | | type="success" |
| | | class="deposit-btn" |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="loan-info flex-between-start"> |
| | | <!-- <div class="loan-info flex-between-start"> |
| | | <div style="width: 50%" class="flex-center"> |
| | | <div class="loan-item"> |
| | | <div class="loan-label">{{ $t("待还款金额") }}</div> |
| | |
| | | >{{ $t("dkjl") }}</el-button |
| | | > |
| | | </div> |
| | | </div> |
| | | </div> --> |
| | | </div> |
| | | |
| | | <!-- 市场数据 --> |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- 划转弹窗 --> |
| | | <Trasferire |
| | | :dialogVisible.sync="trasferireVisible" |
| | | v-if="trasferireVisible" |
| | | @onClose="getMoney" |
| | | :maxNum="Math.floor(moneyData.availableBalance * 100) / 100" |
| | | ></Trasferire> |
| | | <!-- 充值弹窗 --> |
| | | <Deposit |
| | | :dialogVisible.sync="depositDialogVisible" |
| | | v-if="depositDialogVisible" |
| | | @onClose="getMoney" |
| | | ></Deposit> |
| | | |
| | | |
| | | <!-- 提现弹窗 --> |
| | | <Withdraw |
| | | :dialogVisible.sync="withdrawVisible" |
| | |
| | | import lp from "./components/lp.vue"; |
| | | import Deposit from "./components/Deposit.vue"; |
| | | import Withdraw from "./components/Withdraw.vue"; |
| | | import Trasferire from "./components/Trasferire.vue"; |
| | | import LoanApplication from "./components/LoanApplication.vue"; |
| | | import LoanRecords from "./components/LoanRecords.vue"; |
| | | import Position from "./components/Position.vue"; |
| | |
| | | lp, |
| | | bto, |
| | | Deposit, |
| | | Trasferire, |
| | | Withdraw, |
| | | LoanApplication, |
| | | LoanRecords, |
| | |
| | | depositAmount: "", // 存款金额 |
| | | depositMethod: "Bank Transfer", // 存款方式 |
| | | depositDialogVisible: false, // 存款弹窗显示状态 |
| | | trasferireVisible: false, // 存款弹窗显示状态 |
| | | withdrawVisible: false, // 存款弹窗显示状态 |
| | | applicationVisible: false, // 申请贷款弹窗显示状态 |
| | | recordsVisible: false, // 贷款记录弹窗显示状态 |