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 85ac868..7c1fe5e 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html @@ -348,34 +348,7 @@ $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); }, handlePreview(file){ - $.ajax({ - url: '/common/download/resource?resource=' + file.url, - type: 'GET', - xhrFields: { - responseType: 'blob' - }, - success: function (data, status, xhr) { - let contentType = xhr.getResponseHeader('Content-Type'); - let filename = file.name; - if (navigator.msSaveBlob) { - // 兼容 IE - navigator.msSaveBlob(data, filename); - } else { - let blob = new Blob([data], { type: contentType }); - let url = URL.createObjectURL(blob); - let a = document.createElement('a'); - a.href = url; - a.download = filename; - document.body.appendChild(a); - a.click(); - document.body.removeChild(a); - URL.revokeObjectURL(url); - } - }, - error: function (xhr, status, error) { - console.error('下载文件失败:', error); - } - }); + window.location.href = ctx + "common/download/resource?resource=" + encodeURI(file.url) ; }, validateEndTime(rule, value, callback) { // if (value && this.postForm.checkStartTime && new Date(value).getTime() < new Date(this.postForm.checkStartTime).getTime()) { diff --git a/ruoyi-admin/src/main/resources/templates/system/secreting/add.html b/ruoyi-admin/src/main/resources/templates/system/secreting/add.html index 566549b..ef78c86 100644 --- a/ruoyi-admin/src/main/resources/templates/system/secreting/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/secreting/add.html @@ -1,10 +1,139 @@ - +
- -