This commit is contained in:
qijq 2025-08-30 18:20:48 +08:00
parent 2246ccaede
commit 951488cc79

View File

@ -17,14 +17,14 @@
:fixed="true" :fixed="true"
:height="'44px'" :height="'44px'"
> >
<block slot="left"> <!-- <block slot="left">
<u-icon <u-icon
name="arrow-left" name="arrow-left"
color="#303133" color="#303133"
size="20" size="20"
@click="pageBack()" @click="pageBack()"
></u-icon> ></u-icon>
</block> </block> -->
<block slot="right"> <block slot="right">
<view class="btn-login-out" @click="loginOut">退出登录</view> <view class="btn-login-out" @click="loginOut">退出登录</view>
</block> </block>
@ -379,8 +379,8 @@
<template v-if="bankList.length"> <template v-if="bankList.length">
<view <view
class="branch_list_item" class="branch_list_item"
v-for="(item, index) in bankList" v-for="(item, index) of bankList"
:key="item.id + index" :key="index"
@click="onBankSelect(item, $event)" @click="onBankSelect(item, $event)"
> >
{{ item.branch_bank_name }} {{ item.branch_bank_name }}
@ -1267,7 +1267,17 @@ export default {
let isValidata = true; let isValidata = true;
approval_invalid_col.forEach((item) => { 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({ this.$refs.uToast.show({
message: item.ruleMessage, message: item.ruleMessage,
type: "error", type: "error",