From e5e3e1a5bc8aa300c580126703bb6067221dee96 Mon Sep 17 00:00:00 2001 From: yxh <172933527@qq.com> Date: 星期四, 15 六月 2023 10:09:08 +0800 Subject: [PATCH] 主要修改了个税计算 --- src/views/project/fund/fundApply/index.vue | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/src/views/project/fund/fundApply/index.vue b/src/views/project/fund/fundApply/index.vue index dfee463..d79a315 100644 --- a/src/views/project/fund/fundApply/index.vue +++ b/src/views/project/fund/fundApply/index.vue @@ -369,7 +369,7 @@ <el-row> <el-col :span="24"> <el-form-item label="鐢宠闄勪欢锛�" align="left" prop="annexbankcard"> - <el-upload size="mini" class="upload-demo" :action="uploadFileUrl" :file-list="fileList" multiple :limit="5" + <el-upload size="mini" class="upload-demo" :action="uploadFileUrl" :file-list="fileList" multiple :limit="20" :headers="headers" :on-success="(response, file, fileList) => uploadSccess(response, file, fileList) " :on-preview="downFile" :disabled='dialogType == "detail"' :on-error="handleUploadError" @@ -627,14 +627,12 @@ this.detailInfoDialogShowType = showType; }, ConfirmDetailDialog() { - debugger; let tempIndex = this.funddetailForm.index; let tempName = this.funddetailForm.beneficiaryname; let tempUnitname = this.funddetailForm.unitname; let singleDetail = this.fundDetailArr[tempIndex]; if (this.detailInfoDialogShowType == "name") { this.personlist.map((res) => { - debugger; if (tempName == res.username) { singleDetail.beneficiaryno = res.userno; singleDetail.beneficiaryname = res.username; @@ -666,7 +664,6 @@ singleDetail.unitname = singleDetail.unitno; } } - debugger; this.fundDetailArr[tempIndex] = singleDetail; this.detailInfoDialogShow = false; }, -- Gitblit v1.9.3