This commit is contained in:
weipengfei 2023-12-29 19:23:04 +08:00
parent 3e9170ef6b
commit c78bcb4e30
2 changed files with 15 additions and 15 deletions

View File

@ -318,14 +318,14 @@
</view> </view>
<view class="item"> <view class="item">
<view class="acea-row row-middle"> <view class="acea-row row-middle">
<text class="item-name">开户行名称:</text> <text class="item-name">银行:</text>
<input type="text" maxlength="30" placeholder="请输入开户行名称" v-model="merchantData.bank_username" <input type="text" maxlength="30" placeholder="请输入行名称" v-model="merchantData.bank_username"
@input="validateBtn" placeholder-class='placeholder' /> @input="validateBtn" placeholder-class='placeholder' />
</view> </view>
</view> </view>
<view class="item"> <view class="item">
<view class="acea-row row-middle"> <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" <input type="text" placeholder="请输入开户行地址" v-model="merchantData.bank_opening" @input="validateBtn"
placeholder-class='placeholder' /> placeholder-class='placeholder' />
</view> </view>

View File

@ -1,7 +1,7 @@
<template> <template>
<view :style="viewColor"> <view :style="viewColor">
<view class='cash-withdrawal' :hidden='!loading'> <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='name'>提现至</view>
<view class='input'> <view class='input'>
<view class="more-content" @click="goPay(currentTab)"> <view class="more-content" @click="goPay(currentTab)">
@ -16,7 +16,7 @@
</view> </view>
</view> </view>
</view> </view>
</view> </view> -->
<view class='wrapper'> <view class='wrapper'>
<view :hidden='currentTab != 0' class='list'> <view :hidden='currentTab != 0' class='list'>
<form @submit="subCash" report-submit='true'> <form @submit="subCash" report-submit='true'>
@ -38,9 +38,9 @@
placeholder-class='placeholder' name="bank_code"></input></view> placeholder-class='placeholder' name="bank_code"></input></view>
</view> </view>
<view class='item acea-row row-between-wrapper' v-if="array.length>0"> <view class='item acea-row row-between-wrapper' v-if="array.length>0">
<view class='name'>开户</view> <view class='name'></view>
<view class='input'> <view class='input'>
<input placeholder='请输入开户行' v-model="mode.bank_name" <input placeholder='请输入行' v-model="mode.bank_name"
placeholder-class='placeholder' name="bank_address"></input> placeholder-class='placeholder' name="bank_address"></input>
<!-- <picker @change="bindPickerChange" :value="index" :range="array" range-key="name"> <!-- <picker @change="bindPickerChange" :value="index" :range="array" range-key="name">
<text class='Bank'>{{array[index]["name"]}}</text> <text class='Bank'>{{array[index]["name"]}}</text>
@ -49,8 +49,8 @@
</view> </view>
</view> </view>
<view class='item acea-row row-between-wrapper'> <view class='item acea-row row-between-wrapper'>
<view class='name'>开户行地址</view> <view class='name'>开户网点</view>
<view class='input'><input placeholder='请输入开户行地址' v-model="mode.bank_address" <view class='input'><input placeholder='请输入开户网点' v-model="mode.bank_address"
placeholder-class='placeholder' name="bank_address"></input></view> placeholder-class='placeholder' name="bank_address"></input></view>
</view> </view>
<view class='item acea-row row-between-wrapper'> <view class='item acea-row row-between-wrapper'>
@ -296,16 +296,16 @@
try { try {
const res = await getAdminApplyAPI(this.merId) const res = await getAdminApplyAPI(this.merId)
// this.mode.real_name = res.data.financial_bank_name // 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_code = res.data.financial_bank_code
this.mode.bank_name = res.data.financial_bank_bank this.mode.bank_name = res.data.financial_bank_bank
this.mode.bank_address = res.data.financial_bank_opening this.mode.bank_address = res.data.financial_bank_branch
this.mode.mer_name = res.data.mer_name this.mode.mer_name = res.data.financial_bank_name
this.extract_money=res.data.extract_money this.extract_money=res.data.extract_money
this.lock_money = res.data.lock_money this.lock_money = res.data.lock_money
this.ot_margin = res.data.ot_margin this.ot_margin = res.data.ot_margin
this.lock_time = res.data.lock_time this.lock_time = res.data.lock_time
console.log(this.extract_money) // console.log(this.extract_money)
} catch (err) { } catch (err) {
//TODO handle the exception //TODO handle the exception
Toast(err) Toast(err)
@ -412,10 +412,10 @@
title: '请填写对公账号' title: '请填写对公账号'
}); });
if (!this.mode.bank_name) return this.$util.Tips({ if (!this.mode.bank_name) return this.$util.Tips({
title: '请填写开户行' title: '请填写行'
}); });
if (!this.mode.bank_address) return this.$util.Tips({ if (!this.mode.bank_address) return this.$util.Tips({
title: '请填写开户地址' title: '请填写开户网点'
}); });
// if (that.index == 0) return this.$util.Tips({ // if (that.index == 0) return this.$util.Tips({
// title: "" // title: ""