This commit is contained in:
parent
3e9170ef6b
commit
c78bcb4e30
|
@ -318,14 +318,14 @@
|
|||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<text class="item-name">开户行名称:</text>
|
||||
<input type="text" maxlength="30" placeholder="请输入开户行名称" v-model="merchantData.bank_username"
|
||||
<text class="item-name">银行:</text>
|
||||
<input type="text" maxlength="30" placeholder="请输入银行名称" v-model="merchantData.bank_username"
|
||||
@input="validateBtn" placeholder-class='placeholder' />
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="acea-row row-middle">
|
||||
<text class="item-name">开户行地址:</text>
|
||||
<text class="item-name">开户网点:</text>
|
||||
<input type="text" placeholder="请输入开户行地址" v-model="merchantData.bank_opening" @input="validateBtn"
|
||||
placeholder-class='placeholder' />
|
||||
</view>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view :style="viewColor">
|
||||
<view class='cash-withdrawal' :hidden='!loading'>
|
||||
<view class='nav acea-row row-between-wrapper'>
|
||||
<!-- <view class='nav acea-row row-between-wrapper'>
|
||||
<view class='name'>提现至</view>
|
||||
<view class='input'>
|
||||
<view class="more-content" @click="goPay(currentTab)">
|
||||
|
@ -16,7 +16,7 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
<view class='wrapper'>
|
||||
<view :hidden='currentTab != 0' class='list'>
|
||||
<form @submit="subCash" report-submit='true'>
|
||||
|
@ -38,9 +38,9 @@
|
|||
placeholder-class='placeholder' name="bank_code"></input></view>
|
||||
</view>
|
||||
<view class='item acea-row row-between-wrapper' v-if="array.length>0">
|
||||
<view class='name'>开户行</view>
|
||||
<view class='name'>银行</view>
|
||||
<view class='input'>
|
||||
<input placeholder='请输入开户行' v-model="mode.bank_name"
|
||||
<input placeholder='请输入银行' v-model="mode.bank_name"
|
||||
placeholder-class='placeholder' name="bank_address"></input>
|
||||
<!-- <picker @change="bindPickerChange" :value="index" :range="array" range-key="name">
|
||||
<text class='Bank'>{{array[index]["name"]}}</text>
|
||||
|
@ -49,8 +49,8 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class='item acea-row row-between-wrapper'>
|
||||
<view class='name'>开户行地址</view>
|
||||
<view class='input'><input placeholder='请输入开户行地址' v-model="mode.bank_address"
|
||||
<view class='name'>开户网点</view>
|
||||
<view class='input'><input placeholder='请输入开户网点' v-model="mode.bank_address"
|
||||
placeholder-class='placeholder' name="bank_address"></input></view>
|
||||
</view>
|
||||
<view class='item acea-row row-between-wrapper'>
|
||||
|
@ -296,16 +296,16 @@
|
|||
try {
|
||||
const res = await getAdminApplyAPI(this.merId)
|
||||
// this.mode.real_name = res.data.financial_bank_name
|
||||
this.mode.real_name = res.data.mer_name
|
||||
this.mode.real_name = res.data.financial_bank_name
|
||||
this.mode.bank_code = res.data.financial_bank_code
|
||||
this.mode.bank_name = res.data.financial_bank_bank
|
||||
this.mode.bank_address = res.data.financial_bank_opening
|
||||
this.mode.mer_name = res.data.mer_name
|
||||
this.mode.bank_address = res.data.financial_bank_branch
|
||||
this.mode.mer_name = res.data.financial_bank_name
|
||||
this.extract_money=res.data.extract_money
|
||||
this.lock_money = res.data.lock_money
|
||||
this.ot_margin = res.data.ot_margin
|
||||
this.lock_time = res.data.lock_time
|
||||
console.log(this.extract_money)
|
||||
// console.log(this.extract_money)
|
||||
} catch (err) {
|
||||
//TODO handle the exception
|
||||
Toast(err)
|
||||
|
@ -412,10 +412,10 @@
|
|||
title: '请填写对公账号'
|
||||
});
|
||||
if (!this.mode.bank_name) return this.$util.Tips({
|
||||
title: '请填写开户行'
|
||||
title: '请填写银行'
|
||||
});
|
||||
if (!this.mode.bank_address) return this.$util.Tips({
|
||||
title: '请填写开户地址'
|
||||
title: '请填写开户网点'
|
||||
});
|
||||
// if (that.index == 0) return this.$util.Tips({
|
||||
// title: "请选择银行"
|
||||
|
|
Loading…
Reference in New Issue