mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 11:27:17 +08:00
67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
<title>行事件 - 数据表格</title>
|
||
|
||
<div class="layui-card layadmin-header">
|
||
<div class="layui-breadcrumb" lay-filter="breadcrumb">
|
||
<a lay-href="">主页</a>
|
||
<a><cite>组件</cite></a>
|
||
<a><cite>数据表格</cite></a>
|
||
<a><cite>行事件</cite></a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="layui-fluid">
|
||
<div class="layui-row layui-col-space15">
|
||
<div class="layui-col-md12">
|
||
<div class="layui-card">
|
||
<div class="layui-card-header">行事件</div>
|
||
<div class="layui-card-body">
|
||
|
||
<table class="layui-hide" id="test-table-onrow" lay-filter="test-table-onrow"></table>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
layui.use(['admin', 'table'], function () {
|
||
var admin = layui.admin
|
||
, table = layui.table
|
||
|
||
table.render({
|
||
elem: '#test-table-onrow'
|
||
, url: './res/json/table/demo.js'
|
||
, cols: [[
|
||
{ field: 'id', title: 'ID', width: 80, fixed: 'left', unresize: true, sort: true }
|
||
, { field: 'username', title: '用户名', width: 120 }
|
||
, {
|
||
field: 'email', title: '邮箱', width: 150, templet: function (res) {
|
||
return '<em>' + res.email + '</em>'
|
||
}
|
||
}
|
||
, { field: 'sex', title: '性别', width: 80, 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 }
|
||
]]
|
||
, page: true
|
||
})
|
||
|
||
//行单击事件(单击事件为:rowDouble)
|
||
table.on('row(test-table-onrow)', function (obj) {
|
||
var data = obj.data
|
||
|
||
layer.alert(layui.util.escape(JSON.stringify(data)), {
|
||
title: '当前行数据:'
|
||
})
|
||
|
||
//标注选中样式
|
||
obj.tr.addClass('layui-table-click').siblings().removeClass('layui-table-click')
|
||
})
|
||
|
||
})
|
||
</script> |