ZhiYeJianKang/职业健康平台后端/target/dzzyb/static/quxian/pjbgtx.html
2025-02-20 15:25:59 +08:00

100 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>评价报告列表</title>
<link rel="stylesheet" href="js/layui-v2.5.6/layui/css/layui.css" media="all">
<style type="text/css">
.layui-btn-primary {
border: 1px solid #C9C9C9;
background-color: #f26947 !important;
color: white !important;
}
</style>
<script>
function ckzy(data) {
layer.open({
type: 2,
area: ['50%', '70%'],
title: "查看",
maxmin: true,
content: 'pjbglbform.html',
btn: ['关闭'],
yes: function(index) {
layer.close(index);
}
})
}
</script>
</head>
</head>
<body>
<button type="button" class="layui-btn">添加</button>
<button type="button" class="layui-btn">修改</button>
<button type="button" class="layui-btn">删除</button>
<table id="demo" class="layui-hide" lay-filter="xk"></table>
<script type="text/html" id="barDemo">
<a class="layui-btn layui-btn-primary layui-btn-xs" lay-event="detail">提醒</a>
</script>
<script src="js/layui-v2.5.6/layui/layui.all.js"></script>
<script>
layui.use('table', function() {
var table = layui.table;
table.render({
elem: '#demo',
data:[
{"a1":"030005","a2":"人事部","a3":"2020-03-29","a4":"员工设备","a5":"人事部三月评价报告","a6":"是"},
{"a1":"030006","a2":"售前部","a3":"2020-03-22","a4":"产品是否达标","a5":"售前部二月评价报告","a6":"否"},
{"a1":"030007","a2":"行政部","a3":"2020-03-10","a4":"设备","a5":"行政部三月评价报告","a6":"是"},
{"a1":"030008","a2":"技术部","a3":"2020-03-02","a4":"设备排污、噪音","a5":"技术部三月评价报告","a6":"是"},
]
,
cellMinWidth: 80 //全局定义常规单元格的最小宽度
,
page: true //开启分页
,
cols: [
[ //表头
{
field: 'a2',
title: '评价部门'
}, {
field: 'a3',
title: '评价日期'
}, {
field: 'a4',
title: '评价项目'
}, {
field: 'a5',
title: '评价报告'
}, {
field: 'a6',
title: '报告是否提交'
},{
fixed: 'right',
title: '提醒',
width: 165,
align: 'center',
toolbar: '#barDemo'
}
]
]
});
//监听行工具事件
table.on('tool(xk)', function(obj) { //注tool 是工具条事件名test 是 table 原始容器的属性 lay-filter="对应的值"
var data = obj.data //获得当前行数据
,
layEvent = obj.event; //获得 lay-event 对应的值
if (layEvent === 'detail') {
layer.msg('已提醒');;
}
});
});
</script>
</body>
</html>