layui-js/examples/table.html

450 lines
12 KiB
HTML
Raw Normal View History

2017-08-21 08:51:13 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>表格操作 - layui</title>
<link rel="stylesheet" href="../src/css/layui.css">
<style>
2017-11-17 21:15:26 +08:00
body{padding: 20px; /*overflow-y: scroll;*/}
2017-08-21 08:51:13 +08:00
</style>
</head>
<body>
2017-11-15 11:57:51 +08:00
<table id="test2" lay-filter="test2"></table>
2017-08-21 08:51:13 +08:00
<div class="layui-btn-group">
<button class="layui-btn" data-type="getCheckData">获取选中行数据</button>
<button class="layui-btn" data-type="getCheckLength">获取选中数目</button>
<button class="layui-btn" data-type="isAll">验证是否全选</button>
</div>
2017-11-15 11:57:51 +08:00
<table id="test" lay-filter="test"></table>
2017-08-21 08:51:13 +08:00
2017-11-15 11:57:51 +08:00
<script type="text/html" id="barDemo">
<a class="layui-btn layui-btn-xs" lay-event="edit">编辑</a>
<a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>
</script>
2017-08-21 08:51:13 +08:00
<script type="text/html" id="usernameTpl">
2017-08-30 17:10:33 +08:00
<a href="" class="layui-table-link">{{d.username || ''}}</a>
2017-08-21 08:51:13 +08:00
</script>
2017-11-15 11:57:51 +08:00
<script type="text/html" id="switchTpl">
<input type="checkbox" name="yyy" lay-skin="switch" lay-text="女|男">
</script>
<script type="text/html" id="checkboxTpl">
<input type="checkbox" name="" title="锁定" checked>
</script>
2017-08-21 08:51:13 +08:00
<script type="text/html" id="LAY_table_tpl_email">
<span {{# if(!d.activate){ }}style="color:#999"{{# } }}>{{ d.email }}</span>
</script>
2017-11-17 14:18:42 +08:00
2017-11-15 11:57:51 +08:00
<table class="layui-table" lay-data="{width:800, height: 300, url:'json/table/demo2.json', page: true, limit: 6}">
2017-08-21 08:51:13 +08:00
<thead>
<tr>
2017-09-01 07:52:28 +08:00
<th lay-data="{checkbox:true, fixed:'left'}" rowspan="2"></th>
2017-08-21 08:51:13 +08:00
<th lay-data="{field:'username', width:80}" rowspan="2">联系人</th>
<th lay-data="{field:'amount', width:120}" rowspan="2">金额</th>
<th lay-data="{align:'center'}" colspan="3">地址</th>
2017-09-15 00:50:23 +08:00
<th lay-data="{fixed: 'right', width: 155, align: 'center', toolbar: '#barDemo'}" rowspan="2">操作</th>
2017-08-21 08:51:13 +08:00
</tr>
<tr>
2017-09-15 00:50:23 +08:00
<th lay-data="{field:'province', width:130}"></th>
<th lay-data="{field:'city', width:130}"></th>
<th lay-data="{field:'zone', width:200}"></th>
2017-08-21 08:51:13 +08:00
</tr>
</thead>
</table>
2017-11-15 11:57:51 +08:00
<table class="layui-table" lay-data="{url:'json/table/demo2.json', page: true, limit: 6}">
2017-08-21 08:51:13 +08:00
<thead>
<tr>
2017-11-15 11:57:51 +08:00
<th lay-data="{field:'username'}" rowspan="3">联系人</th>
2017-09-15 00:50:23 +08:00
<th lay-data="{field:'amount', width:120}" rowspan="3">金额</th>
<th lay-data="{align:'center'}" colspan="5">地址1</th>
<th lay-data="{align:'center'}" colspan="2">地址2</th>
<th lay-data="{fixed: 'right', width: 120, align: 'center', toolbar: '#barDemo'}" rowspan="3">操作</th>
2017-08-21 08:51:13 +08:00
</tr>
<tr>
<th lay-data="{field:'province', width:80}" rowspan="2"></th>
2017-09-15 00:50:23 +08:00
<th lay-data="{field:'city', width:80}" rowspan="2"></th>
<th lay-data="{align:'center'}" colspan="2">详细</th>
<th lay-data="{field:'zone', width:80}" rowspan="2"></th>
<th lay-data="{field:'province', width:80}" rowspan="2"></th>
<th lay-data="{field:'city', width:80}" rowspan="2"></th>
2017-08-21 08:51:13 +08:00
</tr>
<tr>
2017-09-15 00:50:23 +08:00
<th lay-data="{field:'address', width:120}">小区</th>
2017-11-15 11:57:51 +08:00
<th lay-data="{field:'house', width:150}">单元</th>
2017-08-21 08:51:13 +08:00
</tr>
</thead>
</table>
2017-09-15 00:50:23 +08:00
2017-11-15 11:57:51 +08:00
<table id="demo"></table>
2017-08-21 08:51:13 +08:00
<div class="layui-btn-group">
<button class="layui-btn" data-type="parseTable">转化为数据表格</button>
</div>
<table class="layui-table" lay-skin="line" lay-filter="parse-table-demo">
<thead>
<tr>
2017-09-15 00:50:23 +08:00
<th lay-data="{checkbox:true}"></th>
2017-08-21 08:51:13 +08:00
<th lay-data="{field:'username', width:200}">昵称</th>
<th lay-data="{field:'joinTime', width:150}">加入时间</th>
2017-11-19 07:47:16 +08:00
<th lay-data="{field:'sign'}">签名</th>
2017-08-21 08:51:13 +08:00
</tr>
</thead>
<tbody>
<tr>
2017-09-15 00:50:23 +08:00
<td></td>
2017-08-21 08:51:13 +08:00
<td>贤心1</td>
<td>2016-11-28</td>
<td>人生就像是一场修行a</td>
</tr>
<tr>
2017-09-15 00:50:23 +08:00
<td></td>
2017-08-21 08:51:13 +08:00
<td>贤心2</td>
<td>2016-11-29</td>
<td>人生就像是一场修行b</td>
</tr>
<tr>
2017-09-15 00:50:23 +08:00
<td></td>
2017-08-21 08:51:13 +08:00
<td>贤心3</td>
<td>2016-11-30</td>
<td>人生就像是一场修行c</td>
</tr>
</tbody>
</table>
2017-09-13 16:06:55 +08:00
<table class="layui-table" lay-filter="parse-table-demo">
<thead>
<tr>
2017-11-19 07:47:16 +08:00
<td rowspan="2" lay-data="{field:'louceng'}">楼层</td>
2017-09-13 16:06:55 +08:00
<td colspan="2">1单元</td>
<td colspan="2">2单元</td>
</tr>
<tr>
<td lay-data="{field:'men1', width:80}">1门</td>
<td lay-data="{field:'men2', width:80}">2门</td>
<td lay-data="{field:'men3', width:80}">1门</td>
<td lay-data="{field:'men4', width:80}">2门</td>
</tr>
</thead>
<tbody>
<tr>
<td>3楼</td>
<td>301</td>
<td>302</td>
<td>301</td>
<td>302</td>
</tr>
<tr>
<td>2楼</td>
<td>201</td>
<td>202</td>
<td>201</td>
<td>202</td>
</tr>
<tr>
<td>1楼</td>
<td>101</td>
<td>102</td>
<td>101</td>
<td>102</td>
</tr>
</tbody>
</table>
2017-08-21 08:51:13 +08:00
2017-11-15 11:57:51 +08:00
<script type="text/html" id="toolbarDemo">
2018-05-05 16:59:53 +08:00
<i class="layui-icon" data-type="add">&#xe654;</i>
<i class="layui-icon" data-type="delete">&#xe640;</i>
2017-11-15 11:57:51 +08:00
</script>
2017-08-21 08:51:13 +08:00
<script src="../src/layui.js" charset="utf-8"></script>
<script>
layui.use('table', function(){
var table = layui.table;
2017-11-15 11:57:51 +08:00
//渲染
table.render({
elem: '#test'
,height: 350
,url: 'json/table/demo1.json'
2017-11-16 07:34:22 +08:00
,page: {
}
2017-11-17 14:18:42 +08:00
,limit: 30
2017-11-15 11:57:51 +08:00
,toolbar: '#toolbarDemo'
,cols: [[
2017-11-27 23:44:54 +08:00
{type: 'checkbox', fixed: 'left'}
2017-11-15 11:57:51 +08:00
,{field:'id', title:'ID', width:80, fixed: 'left', unresize: true, sort: true}
,{field:'username', title:'用户名', width:120, edit: 'text', templet: '#usernameTpl'}
,{field:'email', title:'邮箱', width:150}
,{field:'sex', title:'性别', width:80, edit: 'text', sort: true}
,{field:'city', title:'城市', width:100}
,{field:'sign', title:'签名'}
,{field:'experience', title:'积分', width:80, sort: true}
,{field:'ip', title:'IP', width:120}
,{field:'logins', title:'登入次数', width:100, sort: true}
,{field:'joinTime', title:'加入时间', width:120}
,{fixed: 'right', title:'操作', toolbar: '#barDemo', width:150}
]]
});
table.render({
elem: '#test2'
,url: 'json/table/demo1.json'
2018-04-03 06:41:11 +08:00
,contentType: 'application/json'
2017-11-16 07:34:22 +08:00
,page: { //详细参数可参考 laypage 组件文档
curr: 5
,groups: 1
,first: false
,last: false
,layout: ['limit', 'prev', 'page', 'next', 'count'] //自定义分页布局
}
2017-11-19 07:47:16 +08:00
,height: 300
2017-11-16 07:34:22 +08:00
,cellMinWidth: 80
2017-11-15 11:57:51 +08:00
,cols: [[
{type:'numbers'}
2018-05-05 16:59:53 +08:00
,{type: 'radio'}
2017-11-17 14:18:42 +08:00
,{field:'id', title:'ID', unresize: true, sort: true}
,{field:'username', title:'用户名', templet: '#usernameTpl'}
2018-05-05 16:59:53 +08:00
,{field:'email', title:'邮箱', edit: 'select'}
,{field:'sex', title:'性别', edit: 'switch', templet: '#switchTpl', minWidth: 85, align:'center'}
2017-11-16 07:34:22 +08:00
,{field:'lock', title:'是否锁定', templet: '#checkboxTpl', minWidth: 110, align:'center'}
,{field:'city', title:'城市'}
2017-11-15 11:57:51 +08:00
]]
});
2018-05-05 16:59:53 +08:00
//监听表格行点击
table.on('tr', function(obj){
console.log(obj)
});
2017-11-15 11:57:51 +08:00
//监听表格复选框选择
table.on('checkbox(test)', function(obj){
console.log(obj)
});
2018-05-05 16:59:53 +08:00
//监听表格单选框选择
table.on('radio(test2)', function(obj){
console.log(obj)
});
2017-11-15 11:57:51 +08:00
//监听单元格编辑
2018-05-05 16:59:53 +08:00
table.on('edit(test2)', function(obj){
2017-11-15 11:57:51 +08:00
var value = obj.value //得到修改后的值
,data = obj.data //得到所在行所有键值
,field = obj.field; //得到字段
});
//监听工具条
table.on('tool(test)', function(obj){
var data = obj.data;
if(obj.event === 'del'){
layer.confirm('真的删除行么', function(index){
obj.del();
layer.close(index);
});
} else if(obj.event === 'edit'){
layer.prompt({
formType: 2
,value: data.username
}, function(value, index){
obj.update({
username: value
});
layer.close(index);
});
}
});
//监听排序
table.on('sort(test)', function(obj){
console.log(this, obj.field, obj.type)
2017-11-17 14:18:42 +08:00
//return;
//服务端排序
2017-11-15 11:57:51 +08:00
table.reload('test', {
initSort: obj
2017-11-17 14:18:42 +08:00
//,page: {curr: 1} //重新从第一页开始
2017-11-15 11:57:51 +08:00
,where: { //重新请求服务端
key: obj.field //排序字段
,order: obj.type //排序方式
}
});
});
//直接赋值数据
table.render({
2017-08-21 08:51:13 +08:00
elem: '#demo'
2017-11-19 07:47:16 +08:00
//,width: 900
//,height: 274
,cols: [[ //标题栏
{type: 'checkbox', LAY_CHECKED: true}
,{field: 'id', title: 'ID', width: 80, sort: true}
,{type: 'space', width: 100} //空列
,{field: 'username', title: '用户名', width: 120}
,{field: 'email', title: '邮箱', width: 150}
,{field: 'sign', title: '签名', width: 150}
,{field: 'sex', title: '性别', width: 80}
,{field: 'city', title: '城市', width: 100}
,{field: 'experience', title: '积分', width: 80, sort: true}
]]
2017-08-21 08:51:13 +08:00
,data: [{
"id": "10001"
,"username": "杜甫"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "116"
,"ip": "192.168.0.8"
,"logins": "108"
,"joinTime": "2016-10-14"
}, {
"id": "10002"
,"username": "李白"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "12"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
,"LAY_CHECKED": true
}, {
"id": "10003"
,"username": "王勃"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "65"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10004"
,"username": "贤心"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "666"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10005"
,"username": "贤心"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "86"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10006"
,"username": "贤心"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "12"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10007"
,"username": "贤心"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "16"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10008"
,"username": "贤心"
,"email": "xianxin@layui.com"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一场修行"
,"experience": "106"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}]
2017-11-19 07:47:16 +08:00
2017-08-21 08:51:13 +08:00
,skin: 'row' //表格风格
,even: true
//,size: 'lg' //尺寸
,page: true //是否显示分页
,limits: [3,5,10]
,limit: 3 //每页默认显示的数量
//,loading: false //请求数据时是否显示loading
2017-08-30 17:10:33 +08:00
});
2017-08-21 08:51:13 +08:00
var $ = layui.jquery, active = {
getCheckData: function(){
var checkStatus = table.checkStatus('test')
,data = checkStatus.data;
layer.alert(JSON.stringify(data));
}
,getCheckLength: function(){
var checkStatus = table.checkStatus('test')
,data = checkStatus.data;
layer.msg('选中了:'+ data.length + ' 个');
}
,isAll: function(){
var checkStatus = table.checkStatus('test');
layer.msg(checkStatus.isAll ? '全选': '未全选')
}
,parseTable: function(){
2017-11-19 07:47:16 +08:00
table.init('parse-table-demo', {
limit: 3
});
2017-08-21 08:51:13 +08:00
}
2018-05-05 16:59:53 +08:00
,add: function(){
table.addRow('test')
}
,delete: function(){
layer.confirm('确认删除吗?', function(index){
table.deleteRow('test')
layer.close(index);
});
}
2017-08-21 08:51:13 +08:00
};
2018-05-05 16:59:53 +08:00
$('i').on('click', function(){
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
2017-08-21 08:51:13 +08:00
$('.layui-btn').on('click', function(){
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
});
</script>
</body>
</html>