新增opert的tab打开方式;优化表格宽度默认自动计算;

This commit is contained in:
2022-07-27 18:20:18 +08:00
parent 9948597c09
commit f7c5f7e0fe
2 changed files with 10 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
define(["jquery", "easy-admin", "echarts", "echarts-theme", "miniAdmin", "miniTab"], function ($, ea, echarts, undefined, miniAdmin, miniTab) { define(["jquery", "easy-admin", "echarts", "echarts-theme", "miniAdmin"], function ($, ea, echarts, undefined, miniAdmin) {
var Controller = { var Controller = {
index: function () { index: function () {
@@ -28,9 +28,6 @@ define(["jquery", "easy-admin", "echarts", "echarts-theme", "miniAdmin", "miniTa
}, },
welcome: function () { welcome: function () {
miniTab.listen();
/** /**
* 报表功能 * 报表功能
*/ */
@@ -111,7 +108,7 @@ define(["jquery", "easy-admin", "echarts", "echarts-theme", "miniAdmin", "miniTa
clearInterval(checkChartVisibleTimer) clearInterval(checkChartVisibleTimer)
} }
}, 3000); }, 3000);
ea.listen();
}, },
editAdmin: function () { editAdmin: function () {
ea.listen(); ea.listen();

View File

@@ -1,4 +1,4 @@
define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypicker', 'tagInput'], function ($, tableSelect, undefined, miniTheme, tableData, citypicker, tagInput) { define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypicker', 'tagInput', 'miniTab'], function ($, tableSelect, undefined, miniTheme, tableData, citypicker, tagInput, miniTab) {
window.onInitElemStyle = function () { window.onInitElemStyle = function () {
miniTheme.renderElemStyle() miniTheme.renderElemStyle()
@@ -756,6 +756,8 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
formatOperat.method = ''; formatOperat.method = '';
} else if (operat.method === 'blank') { } else if (operat.method === 'blank') {
formatOperat.method = ' href="' + formatOperat.url + '" target="_blank" '; formatOperat.method = ' href="' + formatOperat.url + '" target="_blank" ';
} else if (operat.method === 'tab') {
formatOperat.method = ' layuimini-content-href="' + formatOperat.url + '" data-title="' + formatOperat.title + titleEndfix + '"';
} else { } else {
formatOperat.method = formatOperat.method !== '' ? 'data-request="' + formatOperat.url + '" data-title="' + formatOperat.title + titleEndfix + '" ' : ''; formatOperat.method = formatOperat.method !== '' ? 'data-request="' + formatOperat.url + '" data-title="' + formatOperat.title + titleEndfix + '" ' : '';
} }
@@ -779,14 +781,14 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
for (index in col) { for (index in col) {
var val = col[index]; var val = col[index];
if (val['width'] == undefined && val['minWidth'] == undefined) { if (val['minWidth'] == undefined) {
var width = null; var width = null;
if (val.title) { if (val.title) {
width = val.title.length * 15 + 55 width = val.title.length * 15 + 55
} }
if (width != null) { if (width != null) {
cols[i][index]['width'] = width cols[i][index]['minWidth'] = width
} }
} }
@@ -1424,6 +1426,9 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
// 监听标签输入控件生成 // 监听标签输入控件生成
admin.api.tagInput(); admin.api.tagInput();
// 监听tab操作
miniTab.listen();
// 初始化layui表单 // 初始化layui表单
form.render(); form.render();