From 6a9594c1c0298550024df8b2de558956578704f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sun, 19 Nov 2023 17:50:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E9=99=A4=20table=20=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=A4=9A=E4=BD=99=E7=A9=BA=E7=99=BD=E7=AC=A6?= =?UTF-8?q?=20(vscode)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/table-test.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/table-test.html b/examples/table-test.html index e38798db..7e9da0c7 100644 --- a/examples/table-test.html +++ b/examples/table-test.html @@ -28,13 +28,13 @@ @@ -117,7 +117,7 @@ layui.use(['table', 'dropdown'], function(){ // url: 'list', // height: 300 }); - + // 渲染 window.ins1 = table.render({ elem: '#test', @@ -127,7 +127,7 @@ layui.use(['table', 'dropdown'], function(){ url: 'json/table/demo1.json', // method: 'post', - + // lineStyle: 'height: 95px;', // 行样式 css: [ // 自定义样式 '.layui-table-page{text-align: right;}', @@ -182,13 +182,13 @@ layui.use(['table', 'dropdown'], function(){ {field:'joinTime', title:'加入时间', width: 120}, {fixed: 'right', title:'操作', toolbar: '#barDemo', width: 180} ]], - + // autoSort: false // 禁用前端自动排序,由服务的完成排序 initSort111: { // 初始排序状态 field: 'experience', // 排序字段,对应 cols 设定的各字段名 type: 'desc' // 排序方式 asc: 升序、desc: 降序、null: 默认排序 }, - + headers: {headers_token: 'sasasas'}, where: { test: '初始 test 参数', @@ -296,7 +296,7 @@ layui.use(['table', 'dropdown'], function(){ {field:'joinTime', title:'加入时间', width:120} ]] */ - + }); break; case 'reload-deep': @@ -405,7 +405,7 @@ layui.use(['table', 'dropdown'], function(){ console.log(res, msg) } }); - + // 排序事件 table.on('sort(test)', function(obj){ // console.log(obj); @@ -423,7 +423,7 @@ layui.use(['table', 'dropdown'], function(){ } }); }); - + // 头部工具栏事件 table.on('toolbar(test)', function(obj){ var id = obj.config.id; @@ -505,7 +505,7 @@ layui.use(['table', 'dropdown'], function(){ table.on('radio(test)', function(obj){ console.log(obj) }); - + // 行单击事件 table.on('row(test)', function(obj){ console.log(obj); @@ -536,7 +536,7 @@ layui.use(['table', 'dropdown'], function(){ return obj.reedit(); // 重新编辑 -- v2.8.0 新增 } } - + // 编辑后续操作,如提交更新请求,以完成真实的数据更新 // … layer.msg('编辑成功', {icon: 1});