新打包

This commit is contained in:
todaywindy 2025-06-20 17:52:25 +08:00
parent 51c9d72325
commit 2d8186e6ff
3 changed files with 15340 additions and 19 deletions

View File

@ -10641,6 +10641,7 @@ define('form',['jquery', 'bootstrap', 'upload', 'validator', 'validator-lang'],
}
});
}
console.log(multipleList,params);
//调用Ajax请求方法
Fast.api.ajax({
type: type,
@ -10768,7 +10769,8 @@ define('form',['jquery', 'bootstrap', 'upload', 'validator', 'validator-lang'],
// 重置搜索
form.on("click", "button[type=reset]", function (event) {
form[0].reset();
form.find('#select_area_id').val('');
form.find('#select_item_id').val('');
setTimeout(function () {
that.onCommonSearch();
}, 1);
@ -12515,10 +12517,12 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
});
return html.join(' ');
},
content: function (value, row, index) {
var width = this.width != undefined ? (this.width.toString().match(/^\d+$/) ? this.width + "px" : this.width) : "250px";
var hover = this.hover != undefined && this.hover ? "autocontent-hover" : "";
return "<div class='autocontent-item " + hover + "' style='white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:" + width + ";'>" + value + "</div>";
return "<div class='autocontent-item " + hover + "' style='white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:" + width + ";'>" + (value||'') + "</div>";
},
status: function (value, row, index) {
var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'};
@ -12754,7 +12758,7 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
$.each(dropdowns, function (i, j) {
dropdownHtml.push('<div class="btn-group"><button type="button" class="btn btn-primary dropdown-toggle btn-xs" data-toggle="dropdown">' + i + '</button><button type="button" class="btn btn-primary dropdown-toggle btn-xs" data-toggle="dropdown"><span class="caret"></span></button><ul class="dropdown-menu dropdown-menu-right"><li>' + j.join('</li><li>') + '</li></ul></div>');
});
html.unshift(dropdownHtml.join(' '));
html.push(dropdownHtml.join(' '));
}
return html.join(' ');
},

15347
public/assets/js/require-frontend.min.js vendored Executable file → Normal file

File diff suppressed because one or more lines are too long

View File

@ -773,7 +773,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
var width = this.width != undefined ? (this.width.toString().match(/^\d+$/) ? this.width + "px" : this.width) : "250px";
var hover = this.hover != undefined && this.hover ? "autocontent-hover" : "";
return "<div class='autocontent-item " + hover + "' style='white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:" + width + ";'>" + (value??'') + "</div>";
return "<div class='autocontent-item " + hover + "' style='white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:" + width + ";'>" + (value||'') + "</div>";
},
status: function (value, row, index) {
var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'};