From 177e90a33d2461bb25b69f2313224bf1771e6ac0 Mon Sep 17 00:00:00 2001 From: dyy <18335927079@163.com> Date: Wed, 14 Apr 2021 17:11:42 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E5=A4=9A?= =?UTF-8?q?=E4=B8=AA=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E9=A2=84=E8=A7=88?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LR_SystemModule/Views/Annexes/DownForm.js | 24 ++++++++++++++++--- .../LR_Content/plugin/uploader/lr-uploader.js | 4 ++-- 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Views/Annexes/DownForm.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Views/Annexes/DownForm.js index d5ea4fbd1..cc3b1c006 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Views/Annexes/DownForm.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_SystemModule/Views/Annexes/DownForm.js @@ -10,13 +10,16 @@ var bootstrap = function ($, learun) { var $item = $('
'); $item.append('
'); $item.append('' + item.F_FileName + '(' + learun.countFileSize(item.F_FileSize) + ')'); - $item.append('
'); - + $item.append('
'); $item.find('.lr-tool-bar .fa-cloud-download').on('click', function () { var fileId = $(this).attr('data-value'); DownFile(fileId); }); - + //预览 + $item.find('.lr-tool-bar .fa-eye').on('click', function () { + var fileId = $(this).attr('data-value'); + ViewFile(fileId); + }); $('#lr_form_file_queue_list').append($item); } }); @@ -28,6 +31,21 @@ var bootstrap = function ($, learun) { learun.postFormSilence(top.$.rootUrl + '/EducationalAdministration/Sys_ReceiveFile/Read', { keyValue: RFileId }, function () {}); } } + //预览 + var ViewFile = function (fileId) { + learun.layerForm({ + id: 'PreviewForm', + title: '文件预览', + url: top.$.rootUrl + '/LR_SystemModule/Annexes/PreviewFile?fileId=' + fileId, + width: 1080, + height: 850, + btn: null + }); + //公文查阅:已读 + if (RFileId !== null && RFileId !== "") { + learun.postFormSilence(top.$.rootUrl + '/EducationalAdministration/Sys_ReceiveFile/Read', { keyValue: RFileId }, function () { }); + } + } $('#lr_form_file_queue').lrscroll(); diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/LR_Content/plugin/uploader/lr-uploader.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/LR_Content/plugin/uploader/lr-uploader.js index 5611c564c..05e132629 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/LR_Content/plugin/uploader/lr-uploader.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Views/LR_Content/plugin/uploader/lr-uploader.js @@ -19,7 +19,7 @@ var $btnGroup = $('
'); var $uploadBtn = $('上传'); - var $downBtn = $('下载'); + var $downBtn = $('下载/预览'); var $viewBtn = $('预览'); $self.append($wrap); @@ -113,7 +113,7 @@ placeholderDown: '下载附件', isUpload: true, isDown: true, - isView: true, + isView: false, extensions: '', filePath: ''//上传路径(配置文件) }