update
This commit is contained in:
parent
2246ccaede
commit
951488cc79
@ -17,14 +17,14 @@
|
||||
:fixed="true"
|
||||
:height="'44px'"
|
||||
>
|
||||
<block slot="left">
|
||||
<!-- <block slot="left">
|
||||
<u-icon
|
||||
name="arrow-left"
|
||||
color="#303133"
|
||||
size="20"
|
||||
@click="pageBack()"
|
||||
></u-icon>
|
||||
</block>
|
||||
</block> -->
|
||||
<block slot="right">
|
||||
<view class="btn-login-out" @click="loginOut">退出登录</view>
|
||||
</block>
|
||||
@ -379,8 +379,8 @@
|
||||
<template v-if="bankList.length">
|
||||
<view
|
||||
class="branch_list_item"
|
||||
v-for="(item, index) in bankList"
|
||||
:key="item.id + index"
|
||||
v-for="(item, index) of bankList"
|
||||
:key="index"
|
||||
@click="onBankSelect(item, $event)"
|
||||
>
|
||||
{{ item.branch_bank_name }}
|
||||
@ -1267,7 +1267,17 @@ export default {
|
||||
let isValidata = true;
|
||||
|
||||
approval_invalid_col.forEach((item) => {
|
||||
if (this.form[item.key] == "") {
|
||||
if (this.form[item.key] == "" && item.type!= 'upload') {
|
||||
|
||||
this.$refs.uToast.show({
|
||||
message: item.ruleMessage,
|
||||
type: "error",
|
||||
duration: 1000,
|
||||
});
|
||||
isValidata = false;
|
||||
}
|
||||
|
||||
if(item.type == 'upload' && item.imgUrlArr.length <= 0){
|
||||
this.$refs.uToast.show({
|
||||
message: item.ruleMessage,
|
||||
type: "error",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user