新打包

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请求方法 //调用Ajax请求方法
Fast.api.ajax({ Fast.api.ajax({
type: type, type: type,
@ -10768,7 +10769,8 @@ define('form',['jquery', 'bootstrap', 'upload', 'validator', 'validator-lang'],
// 重置搜索 // 重置搜索
form.on("click", "button[type=reset]", function (event) { form.on("click", "button[type=reset]", function (event) {
form[0].reset(); form[0].reset();
form.find('#select_area_id').val('');
form.find('#select_item_id').val('');
setTimeout(function () { setTimeout(function () {
that.onCommonSearch(); that.onCommonSearch();
}, 1); }, 1);
@ -12515,10 +12517,12 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
}); });
return html.join(' '); return html.join(' ');
}, },
content: function (value, row, index) { content: function (value, row, index) {
var width = this.width != undefined ? (this.width.toString().match(/^\d+$/) ? this.width + "px" : this.width) : "250px"; 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" : ""; 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) { status: function (value, row, index) {
var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'}; 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) { $.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>'); 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(' '); 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 width = this.width != undefined ? (this.width.toString().match(/^\d+$/) ? this.width + "px" : this.width) : "250px";
var hover = this.hover != undefined && this.hover ? "autocontent-hover" : ""; 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) { status: function (value, row, index) {
var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'}; var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'};