修复参数和变一致问题

pull/1364/head
地亚尔-IT 2023-09-03 12:16:33 +08:00 committed by GitHub
parent f4fd3fba0c
commit ad5e575b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ layui.define(['lay','layer'], function(exports){
};
// 初始渲染
Class.prototype.render = function(options){
Class.prototype.render = function(){
var that = this;
var options = that.config;
@ -494,13 +494,13 @@ layui.define(['lay','layer'], function(exports){
};
//重置方法
Class.prototype.reload = function(options){
Class.prototype.reload = function(opts){
options = options || {};
delete options.elem;
delete options.bindAction;
var that = this;
var options = that.config = $.extend({}, that.config, upload.config, options);
var options = that.config = $.extend({}, that.config, upload.config, opts);
var next = options.elem.next();
//更新文件域相关属性