From 7f4af2806606a4bc0c4dde5bda9d7ab2398808f8 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Fri, 18 Oct 2024 16:26:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9D=90=E6=96=99=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/system/checkReport/add.html | 45 ++++++++++++-- .../templates/system/checkReport/detail.html | 59 ++++++++++++++++-- .../templates/system/checkReport/edit.html | 60 +++++++++++++++++-- 3 files changed, 151 insertions(+), 13 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html index bc8aa6e..1644b00 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html @@ -13,12 +13,15 @@ .el-select{ width: 100%; } + .el-upload__input{ + display: none !important; + }
- + @@ -119,13 +122,13 @@ + + + + width="350"> @@ -271,6 +292,22 @@ // callback(); // } }, + handleUploadSuccess(row) { + return (response, file,fileList) => { + if (response.code == web_status.SUCCESS) { + row.fileName = response.originalFilename; + row.fileUrl = response.url; + row.fileList = fileList + $.modal.msgSuccess("文件上传成功"); + } + }; + }, + handleUploadError(){ + $.modal.msgError('上传失败'); + }, + handleExceed(){ + $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); + }, handleChange(row, expandedRows){ this.loading = true; if (expandedRows.length > 0) { diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html index c286c28..800d7d3 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html @@ -13,12 +13,15 @@ .el-select{ width: 100%; } + .el-upload__input{ + display: none !important; + }
- + @@ -121,13 +124,13 @@ + + + + width="350"> @@ -227,6 +255,7 @@ tempData:{}, startsArry:[], editcheckTypeDTOS:[], + fileList:[], rules: { adduser: [ { required: true, message: '报告人员不能为空!' } @@ -295,6 +324,28 @@ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, + handleUploadSuccess(row) { + return (response, file) => { + if (response.code == web_status.SUCCESS) { + row.fileName = response.originalFilename; + row.fileUrl = response.url; + $.modal.msgSuccess("文件上传成功"); + } + }; + }, + handleRemove(row){ + return () => { + row.fileName = ''; + row.fileUrl = ''; + $.modal.msgSuccess("删除成功"); + }; + }, + handleUploadError(){ + $.modal.msgError('上传失败'); + }, + handleExceed(){ + $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); + }, validateEndTime(rule, value, callback) { // if (value && this.postForm.checkStartTime && new Date(value).getTime() < new Date(this.postForm.checkStartTime).getTime()) { // callback(new Error('结束日期不能早于开始日期')); diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html index 94ef72e..bbad92d 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html @@ -13,12 +13,15 @@ .el-select{ width: 100%; } + .el-upload__input{ + display: none !important; + }
- + @@ -119,13 +122,13 @@ + + + + width="350"> @@ -229,6 +257,7 @@ tempData:{}, startsArry:[], editcheckTypeDTOS:[], + fileList:[], rules: { adduser: [ { required: true, message: '报告人员不能为空!' } @@ -306,6 +335,28 @@ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, + handleUploadSuccess(row) { + return (response, file) => { + if (response.code == web_status.SUCCESS) { + row.fileName = response.originalFilename; + row.fileUrl = response.url; + $.modal.msgSuccess("文件上传成功"); + } + }; + }, + handleRemove(row){ + return () => { + row.fileName = ''; + row.fileUrl = ''; + $.modal.msgSuccess("删除成功"); + }; + }, + handleUploadError(){ + $.modal.msgError('上传失败'); + }, + handleExceed(){ + $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); + }, validateEndTime(rule, value, callback) { // if (value && this.postForm.checkStartTime && new Date(value).getTime() < new Date(this.postForm.checkStartTime).getTime()) { // callback(new Error('结束日期不能早于开始日期')); @@ -366,7 +417,6 @@ // } // this.calculateTotalScore('totalScore') }else{ - debugger row.ifstarts = true let totalScore = parseFloat(this.postForm.totalScore) let score = parseFloat(row.score)