mirror of
https://gitee.com/layui/layui.git
synced 2025-11-24 16:43:14 +08:00
* style: 统一代码格式,修复ESLint错误 - 为所有模块添加尾随逗号 - 修复缺少分号的语句 - 统一对象字面量格式 - 添加ESLint配置文件和文档 - 更新package.json中的脚本和依赖项 * build: 添加 ESLint 配置文件以支持 IE9+ 兼容性 * refactor(upload): 使用已缓存的hint实例替换直接调用 优化代码性能,避免重复实例化hint对象,直接使用模块顶部已缓存的实例 * chore: 更新.gitignore文件以包含更多忽略规则 添加了更多常见的临时文件、编辑器文件、构建输出目录和运行时数据的忽略规则,使项目更加整洁并避免不必要的文件被提交到版本控制中 * fix(lay.js): 修复passive事件监听器选项的返回值 确保getter函数返回true以正确支持passive事件监听 * refactor(form): 移除表单模块中的冗余代码 删除表单模块中无实际作用的冗余代码行,这些代码只是将属性重新赋值为自身,没有实际功能意义 * fix(form): 修复复选框状态处理逻辑 确保复选框的 indeterminate 和 checked 状态被正确转换为布尔值,并优化事件调用时的空格格式 * feat(eslint): 完善 ESLint 配置并添加 VSCode 支持 添加 VSCode 配置文件以支持 ESLint 自动修复和格式化 更新 ESLint 配置,增强代码风格和兼容性规则 修复 package.json 中的脚本拼写错误并添加 format 脚本 调整 .gitignore 以允许特定 VSCode 配置文件 * style: 统一代码中的引号格式并修复缩进问题 统一将双引号改为单引号,修复部分代码缩进不一致的问题,提升代码风格一致性 * docs: 删除过时的ESLint配置文档文件 * build: 采用 prettier 作为代码格式化工具,剔除 ESLint 格式化部分 * chore: 剔除 .vscode/ 配置,保持编辑器中立 * build: 修改 ESLint 为「扁平化配置」方式,避免大量参数堆砌 * chore: 格式化代码 * ci: 添加 git hooks 和 CI 环节把关代码风格 * ci: update * ci: update * test: 测试 ci format * ci: 改用 husky 作为 git hooks,与 Layui 3 保持一致 经测试,simple-git-hooks 生成的 pre-commit 默认为 sh,在 Windows 不兼容(必须用 git bash 执行 commits) * build: 新增 CI 和生产环境跳过 husky 安装的判断 * build: 剔除重复配置 * build: 优化 eslint 配置 --------- Co-authored-by: 贤心 <3277200+sentsim@users.noreply.github.com>
269 lines
7.9 KiB
HTML
269 lines
7.9 KiB
HTML
<!-- 引用自 https://gitee.com/layui/layui/issues/I6V5VY -->
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="../src/css/layui.css"
|
|
href2="//cdnjs.cloudflare.com/ajax/libs/layui/2.9.6/css/layui.css"
|
|
href3="https://cdn.jsdelivr.net/gh/layui/layui@879a9c629cc832f5b235d138adf164d74c34991b/src/css/layui.css"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="layui-fluid" style="padding: 15px">
|
|
<button class="layui-btn" lay-on="asyncLoad">asyncLoad</button>
|
|
<button class="layui-btn" lay-on="flatData">flatData</button>
|
|
<button class="layui-btn" lay-on="expandNode">expandNode</button>
|
|
<button class="layui-btn" lay-on="unexpandNode">unexpandNode</button>
|
|
<table id="demo"></table>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Mock.js/1.0.0/mock-min.js"></script>
|
|
<script
|
|
src="../src/layui.js"
|
|
src1="//cdnjs.cloudflare.com/ajax/libs/layui/2.9.7/layui.js"
|
|
src1="https://cdn.jsdelivr.net/gh/layui/layui@879a9c629cc832f5b235d138adf164d74c34991b/src/layui.js"
|
|
></script>
|
|
<script>
|
|
Mock.setup({
|
|
timeout: '100-300'
|
|
});
|
|
layui.use(['treeTable', 'util'], function () {
|
|
var treeTable = layui.treeTable;
|
|
var util = layui.util;
|
|
|
|
treeTable.set({});
|
|
|
|
util.on({
|
|
asyncLoad: function () {
|
|
treeTable.reload(
|
|
'demo',
|
|
{
|
|
url: '/getDatas',
|
|
tree: {
|
|
data: {
|
|
isSimpleData: false
|
|
},
|
|
async: {
|
|
enable: true,
|
|
autoParam: ['parentId=id']
|
|
},
|
|
callback: {
|
|
onExpand: function (tableId, trData, trExpand) {
|
|
console.log('onExpand', tableId, trData.id, trExpand);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
true
|
|
);
|
|
},
|
|
flatData: function () {
|
|
treeTable.reload(
|
|
'demo',
|
|
{
|
|
data: testDatas,
|
|
url: false,
|
|
tree: {
|
|
data: {
|
|
isSimpleData: true
|
|
},
|
|
async: {
|
|
enable: false,
|
|
autoParam: ['parentId=id']
|
|
}
|
|
}
|
|
},
|
|
true
|
|
);
|
|
},
|
|
expandNode: function () {
|
|
treeTable.expandNode('demo', {
|
|
index: 0,
|
|
expandFlag: true,
|
|
inherit: true,
|
|
callbackFlag: true,
|
|
done: function (tableId, trData, trExpand) {
|
|
console.log('done', tableId, trData.id, trExpand);
|
|
}
|
|
});
|
|
},
|
|
unexpandNode: function () {
|
|
treeTable.expandNode('demo', {
|
|
index: 0,
|
|
expandFlag: false,
|
|
inherit: true,
|
|
callbackFlag: true,
|
|
done: function (tableId, trData, trExpand) {
|
|
console.log('done', tableId, trData.id, trExpand);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
// 生成随机ID函数
|
|
const createId = (() => {
|
|
let nextId = 1;
|
|
return () => nextId++;
|
|
})();
|
|
|
|
// 生成节点函数
|
|
const createNode = (parentId = null, level = 0) => {
|
|
const id = createId();
|
|
const children =
|
|
level < 3
|
|
? Mock.mock({
|
|
'array|0-5': [createNode.bind(null, id, level + 1)]
|
|
}).array
|
|
: [];
|
|
|
|
return {
|
|
id,
|
|
name: `User${id}`,
|
|
type: Mock.mock('@d6'),
|
|
status: Mock.Random.d4(),
|
|
score: Mock.Random.d100(),
|
|
experience: Mock.Random.integer(1000, 99999),
|
|
sex: Mock.Random.cword('男女', 1),
|
|
city: Mock.Random.city(),
|
|
description: Mock.mock('@cparagraph'),
|
|
createTime: Mock.mock('@datetime'),
|
|
parentId,
|
|
children,
|
|
isParent: !!children.length
|
|
};
|
|
};
|
|
|
|
// 生成树
|
|
const rootNodes = Mock.mock({
|
|
'array|10-20': [createNode]
|
|
}).array;
|
|
|
|
// 将树展开
|
|
const flattenTree = (nodes, parentId = null) => {
|
|
let result = [];
|
|
nodes.forEach((node) => {
|
|
result.push({
|
|
...node,
|
|
parentId,
|
|
children: undefined
|
|
});
|
|
if (node.children.length > 0) {
|
|
result = result.concat(flattenTree(node.children, node.id));
|
|
}
|
|
});
|
|
return result;
|
|
};
|
|
|
|
const getTreeData = function (nodes) {
|
|
let result = [];
|
|
nodes.forEach((node) => {
|
|
result.push({
|
|
...node,
|
|
parentId: null,
|
|
children: getTreeData(node.children)
|
|
});
|
|
});
|
|
return result;
|
|
};
|
|
|
|
var testDatas = flattenTree(rootNodes);
|
|
//var testDatas = getTreeData(rootNodes);
|
|
|
|
Mock.mock(/getDatas/, 'get', (config) => {
|
|
//console.log(config);
|
|
var params = layui.url(config.url);
|
|
var search = params.search;
|
|
var parentId = search.parentId;
|
|
var dataRet = testDatas.filter(function (value, index, array) {
|
|
return value.parentId == parentId;
|
|
});
|
|
|
|
var sortColumn = search.sortColumn;
|
|
var sortType = search.sortType;
|
|
|
|
dataRet = layui.sort(dataRet, sortColumn, sortType === 'desc');
|
|
|
|
var curr = search.page;
|
|
if (!curr) {
|
|
curr = 1;
|
|
} else {
|
|
curr = parseInt(curr);
|
|
curr = curr || 1;
|
|
}
|
|
var limit = search.limit;
|
|
if (!limit) {
|
|
limit = dataRet.length;
|
|
} else {
|
|
limit = parseInt(limit);
|
|
limit = limit || dataRet.length;
|
|
}
|
|
var start = (curr - 1) * limit;
|
|
|
|
return {
|
|
code: 0,
|
|
data: dataRet.slice(start, start + limit),
|
|
count: dataRet.length
|
|
};
|
|
});
|
|
|
|
treeTable.render({
|
|
elem: '#demo',
|
|
url: '/getDatas',
|
|
totalRow: true,
|
|
tree: {
|
|
async: {
|
|
enable: true,
|
|
autoParam: ['parentId=id']
|
|
}
|
|
},
|
|
maxHeight: 'full-95',
|
|
cols: [
|
|
[
|
|
{ type: 'numbers', fixed: 'left' },
|
|
{
|
|
field: 'id',
|
|
title: 'ID',
|
|
width: 145,
|
|
sort: true,
|
|
fixed: 'left',
|
|
totalRow: '合计:'
|
|
},
|
|
{ field: 'name', title: '用户名', width: 180, fixed: 'left' },
|
|
{
|
|
field: 'experience',
|
|
title: '积分',
|
|
width: 90,
|
|
sort: true,
|
|
totalRow: '{{= d.TOTAL_NUMS }}'
|
|
},
|
|
{ field: 'sex', title: '性别', width: 80, sort: true },
|
|
{
|
|
field: 'score',
|
|
title: '评分',
|
|
width: 80,
|
|
sort: true,
|
|
totalRow: true
|
|
},
|
|
{ field: 'city', title: '城市', width: 150, templet: '#tpl1' },
|
|
{
|
|
field: 'description',
|
|
title: '描述信息',
|
|
minWidth: 200,
|
|
templet: '#tpl2'
|
|
},
|
|
{ field: 'createTime', title: '创建时间', width: 170 }
|
|
]
|
|
],
|
|
done: function (res, curr, count) {
|
|
console.log('渲染完成', res, curr, count, this);
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|