From 64a9092a3d9e04ab02edd47322970fc004f45a96 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 23 Jun 2022 11:19:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 文件上传大小限制 2. 修正layTable done 回调参数 --- app/admin/view/api/upload.js | 2 ++ public/static/admin.js | 40 +++++------------------------------- 2 files changed, 7 insertions(+), 35 deletions(-) diff --git a/app/admin/view/api/upload.js b/app/admin/view/api/upload.js index de2f6d82a..988743550 100644 --- a/app/admin/view/api/upload.js +++ b/app/admin/view/api/upload.js @@ -73,6 +73,8 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { file.notify = new NotifyExtend(file); } }), layui.each(files, function (index, file) { + // 禁传异常状态图片 + if (typeof file.xstate === 'number' && file.xstate === -1) return; // 图片限宽限高压缩 if (/^image\/*$/.test(file.type) && file.maxWidth > 0 || file.maxHeight > 0 || file.quality !== 1) { FileToBase64(file).then(function (base64) { diff --git a/public/static/admin.js b/public/static/admin.js index 47433db3d..8a95f3255 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -50,40 +50,10 @@ window.jQuery = window.$ = window.jQuery || window.$ || layui.$; /*! 配置 require 参数 */ require.config({ - baseUrl: baseRoot, - waitSeconds: 60, - map: {'*': {css: baseRoot + 'plugs/require/css.js'}}, - paths: { - 'vue': ['plugs/vue/vue.min'], - 'md5': ['plugs/jquery/md5.min'], - 'json': ['plugs/jquery/json.min'], - 'xlsx': ['plugs/jquery/xlsx.min'], - 'excel': ['plugs/jquery/excel.xlsx'], - 'base64': ['plugs/jquery/base64.min'], - 'upload': [tapiRoot + '/api.upload/index?'], - 'notify': ['plugs/notify/notify.min'], - 'angular': ['plugs/angular/angular.min'], - 'cropper': ['plugs/cropper/cropper.min'], - 'echarts': ['plugs/echarts/echarts.min'], - 'ckeditor4': ['plugs/ckeditor4/ckeditor'], - 'ckeditor5': ['plugs/ckeditor5/ckeditor'], - 'websocket': ['plugs/socket/websocket'], - 'pcasunzips': ['plugs/jquery/pcasunzips'], - 'sortablejs': ['plugs/sortable/sortable.min'], - 'vue.sortable': ['plugs/sortable/vue.draggable.min'], - 'jquery.ztree': ['plugs/ztree/ztree.all.min'], - 'jquery.masonry': ['plugs/jquery/masonry.min'], - 'jquery.cropper': ['plugs/cropper/cropper.min'], - 'jquery.autocompleter': ['plugs/jquery/autocompleter.min'], + baseUrl: baseRoot, waitSeconds: 60, map: {'*': {css: baseRoot + 'plugs/require/css.js'}}, paths: { + 'vue': ['plugs/vue/vue.min'], 'md5': ['plugs/jquery/md5.min'], 'json': ['plugs/jquery/json.min'], 'xlsx': ['plugs/jquery/xlsx.min'], 'excel': ['plugs/jquery/excel.xlsx'], 'base64': ['plugs/jquery/base64.min'], 'upload': [tapiRoot + '/api.upload/index?'], 'notify': ['plugs/notify/notify.min'], 'angular': ['plugs/angular/angular.min'], 'cropper': ['plugs/cropper/cropper.min'], 'echarts': ['plugs/echarts/echarts.min'], 'ckeditor4': ['plugs/ckeditor4/ckeditor'], 'ckeditor5': ['plugs/ckeditor5/ckeditor'], 'websocket': ['plugs/socket/websocket'], 'pcasunzips': ['plugs/jquery/pcasunzips'], 'sortablejs': ['plugs/sortable/sortable.min'], 'vue.sortable': ['plugs/sortable/vue.draggable.min'], 'jquery.ztree': ['plugs/ztree/ztree.all.min'], 'jquery.masonry': ['plugs/jquery/masonry.min'], 'jquery.cropper': ['plugs/cropper/cropper.min'], 'jquery.autocompleter': ['plugs/jquery/autocompleter.min'], }, shim: { - 'excel': {deps: [baseRoot + 'plugs/layui_exts/excel.js']}, - 'notify': {deps: ['css!' + baseRoot + 'plugs/notify/light.css']}, - 'cropper': {deps: ['css!' + baseRoot + 'plugs/cropper/cropper.min.css']}, - 'websocket': {deps: [baseRoot + 'plugs/socket/swfobject.min.js']}, - 'ckeditor5': {deps: ['jquery', 'upload', 'css!' + baseRoot + 'plugs/ckeditor5/ckeditor.css']}, - 'vue.sortable': {deps: ['vue', 'sortablejs']}, - 'jquery.ztree': {deps: ['jquery', 'css!' + baseRoot + 'plugs/ztree/zTreeStyle/zTreeStyle.css']}, - 'jquery.autocompleter': {deps: ['jquery', 'css!' + baseRoot + 'plugs/jquery/autocompleter.css']}, + 'excel': {deps: [baseRoot + 'plugs/layui_exts/excel.js']}, 'notify': {deps: ['css!' + baseRoot + 'plugs/notify/light.css']}, 'cropper': {deps: ['css!' + baseRoot + 'plugs/cropper/cropper.min.css']}, 'websocket': {deps: [baseRoot + 'plugs/socket/swfobject.min.js']}, 'ckeditor5': {deps: ['jquery', 'upload', 'css!' + baseRoot + 'plugs/ckeditor5/ckeditor.css']}, 'vue.sortable': {deps: ['vue', 'sortablejs']}, 'jquery.ztree': {deps: ['jquery', 'css!' + baseRoot + 'plugs/ztree/zTreeStyle/zTreeStyle.css']}, 'jquery.autocompleter': {deps: ['jquery', 'css!' + baseRoot + 'plugs/jquery/autocompleter.css']}, } }); @@ -706,9 +676,9 @@ $(function () { option.height = $(window).height() - $table.removeClass('layui-hide').offset().top - 35; } // 动态计算最大页数 - option.done = function () { - typeof option.success === 'function' && option.success.call(this); + option.done = function (res, curr, count) { layui.sessionData('pages', {key: table.id, value: this.page.curr || 1}); + typeof option.success === 'function' && option.success.call(this, res, curr, count); $.form.reInit($table.next()).find('[data-load][data-time!="false"],[data-action][data-time!="false"],[data-queue],[data-iframe]').not('[data-table-id]').attr('data-table-id', table.id); (option.loading = this.loading = true) && $table.data('next', this).next().find(cls.join(',')).animate({opacity: 1}); }, option.parseData = function (res) {