| | |
| | | <main> |
| | | <div class="main-title">IFSC</div> |
| | | <div class="white-input"> |
| | | <input type="number" :placeholder="$t('请设置ifsc')" :value="bankCard.bankAddress" @input="ifscInputValue" /> |
| | | <van-icon class="myr" name="arrow" /> |
| | | <input type="number" :disabled="true" :placeholder="$t('请设置ifsc')" :value="bankCard.bankAddress" @input="ifscInputValue" /> |
| | | <!-- <van-icon class="myr" name="arrow" />--> |
| | | </div> |
| | | <!-- <van-cell--> |
| | | <!-- is-link--> |
| | |
| | | /> |
| | | <div class="main-title">{{ $t("银行帐号") }}</div> |
| | | <div class="white-input"> |
| | | <input type="number" :placeholder="$t('请将银行账户设置为')" :value="bankCard.bankNo" @input="bankNoInputValue" /> |
| | | <van-icon class="myr" name="arrow" /> |
| | | <input type="number" :disabled="true" :placeholder="$t('请将银行账户设置为')" :value="bankCard.bankNo" @input="bankNoInputValue" /> |
| | | <!-- <van-icon class="myr" name="arrow" />--> |
| | | </div> |
| | | <!-- <van-cell--> |
| | | <!-- is-link--> |
| | |
| | | <!-- />--> |
| | | <div class="main-title">{{ $t("hj213") }}</div> |
| | | <div class="white-input"> |
| | | <input type="text" :placeholder="$t('请设置银行名称')" :value="bankCard.bankName" @input="bankNameInputValue" /> |
| | | <van-icon class="myr" name="arrow" /> |
| | | <input type="text" :disabled="true" :placeholder="$t('请设置银行名称')" :value="bankCard.bankName" @input="bankNameInputValue" /> |
| | | <!-- <van-icon class="myr" name="arrow" />--> |
| | | </div> |
| | | <!-- <van-cell is-link :title="bankCard.bankName || $t('请设置银行名称')" />--> |
| | | <div class="main-title">{{ $t("姓名") }}</div> |
| | | <div class="white-input"> |
| | | <input type="text" :placeholder="$t('请将姓名设置为')" :value="actualName" @input="actualNameInputValue" /> |
| | | <van-icon class="myr" name="arrow" /> |
| | | <input type="text" :disabled="true" :placeholder="$t('请将姓名设置为')" :value="actualName" @input="actualNameInputValue" /> |
| | | <!-- <van-icon class="myr" name="arrow" />--> |
| | | </div> |
| | | <!-- <van-cell is-link :title="paymentSelectData.channelName || $t('请将姓名设置为')" />--> |
| | | <!-- <div class="main-title">{{ $t("支持得提款渠道") }}</div>--> |
| | |
| | | }}</span> |
| | | </div> |
| | | <div> |
| | | <!-- <div class="dz-title" v-if="rechargeAccountData.key !== undefined">--> |
| | | <div class="dz-title"> |
| | | <div class="dz-title" v-if="rechargeAccountData.key !== undefined"> |
| | | <div>{{ $t("可用餘額") }}</div> |
| | | <div class="balance-text"> |
| | | {{ availableBalanceUSD }} {{ symbolCode }} |
| | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <van-cell-group> |
| | | <van-cell :title="$t('最低取款金额')" :value="'500' + symbolCode" /> |
| | | </van-cell-group> |
| | | <div> |
| | | <div class="dz-title" v-if="rechargeAccountData.key !== undefined"> |
| | | <div>{{ $t("最低取款金额") }}</div> |
| | | <div class="balance-text"> |
| | | {{ withMinAmt }} {{ symbolCode }} |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <!-- <van-cell-group v-if="rechargeAccountData.key !== undefined">--> |
| | | <!-- <van-cell :title="$t('最低取款金额')" :value="withMinAmt + symbolCode" />--> |
| | | <!-- </van-cell-group>--> |
| | | <van-button |
| | | class="but" |
| | | type="primary" |
| | |
| | | <script> |
| | | import { ActionSheet, Notify,Cell, CellGroup } from "vant"; |
| | | import ClipboardJS from "clipboard"; |
| | | import {getBankCard, getMoney, outMoney, siteGetPayInfo} from "../../axios/api"; |
| | | import {getBankCard, getMoney, getSetting, outMoney, siteGetPayInfo} from "../../axios/api"; |
| | | |
| | | export default { |
| | | components: { |
| | |
| | | getMoneyList: [], |
| | | assetsType: "", |
| | | symbolCode: "", |
| | | withMinAmt:'' |
| | | }; |
| | | }, |
| | | mounted() { |
| | | this.getykh(); |
| | | this.getMoneys(); |
| | | this.getPayInfos(); |
| | | this.setSetting() |
| | | }, |
| | | methods: { |
| | | async setSetting(){ |
| | | const res = await getSetting(); |
| | | if (res.status === 0) { |
| | | this.withMinAmt = res.data.withMinAmt |
| | | } |
| | | }, |
| | | async getPayInfos() { |
| | | const res = await siteGetPayInfo(); |
| | | if (res.status === 0) { |