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"
: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 }}
@ -1263,11 +1263,21 @@ export default {
this.form.id = this.auditInfo.id;
let approval_invalid_col = this.auditInfo.approval_invalid_col;
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",