You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

284 lines
11 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="../../../component/layui/css/layui.css" />
<link rel="stylesheet" href="../../../component/pear/css/module/toast.css" />
<style>
th {
color: #303133;
background-color: #f5f7fa;
}
.layui-card {
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
margin-bottom: 0 !important;
}
.layui-form-item {
margin-bottom: 0;
}
.layui-table td,
.layui-table th {
font-size: 12px;
}
.bp {
background-color: rgba(23, 179, 163, .1);
padding: 5px 10px;
height: 32px;
line-height: 30px;
font-size: 12px;
color: #17b3a3;
border-radius: 4px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid rgba(23, 179, 163, .2);
white-space: nowrap;
}
.xp {
background-color: rgba(144, 147, 153, .1);
padding: 5px 10px;
height: 32px;
line-height: 30px;
font-size: 12px;
color: #909399;
border-radius: 4px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid rgba(144, 147, 153, .2);
white-space: nowrap;
}
</style>
</head>
<body class="layui-form">
<div class="layui-card">
<div class="layui-card-body">
<div class="layui-form-item layui-inline">
<label class="layui-form-label" style="width: auto;">行政区划:</label>
<div class="layui-input-inline" id="xzqhView"></div>
<script id="xzqhScript" type="text/html">
<select id="xzqhId" lay-filter="xzqh">
<option value="">全部</option>
{{# layui.each(d, function(index, item){ }}
<option value="{{item.id}}">{{item.area_name}}</option>
{{# }); }}
</select>
</script>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label" style="width: auto;">学校类型:</label>
<div class="layui-input-inline" id="xxlxView"></div>
<script id="xxlxScript" type="text/html">
<select id="xxlxId" lay-filter="xxlx">
<option value="0">全部</option>
{{# layui.each(d, function(index, item){ }}
<option value="{{item.school_type_id}}">{{item.school_type_name}}</option>
{{# }); }}
</select>
</script>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label" style="width: auto;">分类:</label>
<div class="layui-input-inline">
<select id="flId" lay-filter="fl">
<option value="1">基础环境</option>
<option value="2">数字终端</option>
<option value="3">数字化教学空间(一)</option>
<option value="4">数字化教学空间(二)</option>
<option value="5">文化生活空间(一)</option>
<option value="6">文化生活空间(二)</option>
<option value="7">文化生活空间(三)</option>
<option value="8">网络安全</option>
</select>
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label" style="width: auto;">学校名称:</label>
<div class="layui-input-inline">
<input type="text" lay-affix="clear" id="xxmc" placeholder="请输入学校名称" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-sm" lay-submit lay-filter="user-query">
<i class="layui-icon layui-icon-search"></i>
查询
</button>
</div>
<table class="layui-table" id="myTable"></table>
</div>
</div>
<script src="../../../component/layui/layui.js"></script>
<script src="../../../component/pear/xm-select.js"></script>
<script>
layui.extend({
toast: '../../../component/pear/module/toast' // {/}的意思即代表采用自有路径,即不跟随 base 路径
}).use(['toast'], function () {
var $ = layui.jquery;
var table = layui.table;
var toast = layui.toast;
var form = layui.form;
var laytpl = layui.laytpl;
$.ajax({
type: "GET",
async: false,
url: "/QingLong/zbdc/getQueryXzqh",
success: function (res) {
var xzqhTpl = xzqhScript.innerHTML,
xzqhView = document.getElementById('xzqhView');
laytpl(xzqhTpl).render(res.data, function (html) {
xzqhView.innerHTML = html;
});
form.render();
}
});
$.ajax({
type: "GET",
async: false,
url: "/QingLong/zbdc/getQuerySchoolType",
success: function (res) {
var xxlxTpl = xxlxScript.innerHTML,
xxlxView = document.getElementById('xxlxView');
laytpl(xxlxTpl).render(res.data, function (html) {
xxlxView.innerHTML = html;
});
form.render();
}
});
tableRender();
function tableRender() {
var customCols;
switch ($("#flId").val()) {
case '1':
customCols = [
[
{ title: '序号', align: 'center', width: "60", type: 'numbers', rowspan: 2 },
{ title: '行政区域', field: 'area_name', align: 'center', width: "150", rowspan: 2 },
{ title: '学校名称', field: 'bureau_name', align: 'center', width: "300", rowspan: 2 },
{ title: '学校类型', field: 'school_type_name', align: 'center', width: "100", rowspan: 2 },
{ title: '类别', field: 'lb_name', align: 'center', width: "160", rowspan: 2 },
{ title: '主要设备', field: 'lb_sb_name', align: 'center', width: "160", rowspan: 2 },
{ title: '品牌', field: 'pinpai', align: 'center', width: "110", rowspan: 2 },
{ title: '型号', field: 'xinghao', align: 'center', width: "110", rowspan: 2 },
{ title: '现状', align: 'center', colspan: 3 },
{ title: '工作状态', align: 'center', colspan: 6 },
{ title: '网络带宽MB', field: 'wangluodaikuan', align: 'center', width: "135", rowspan: 2 },
{ title: '网络服务供应商', field: 'wangluofuwushang', align: 'center', width: "135", rowspan: 2 },
],
[
{ title: '具体装备情况', field: 'jtzbqk', align: 'center', width: "115" },
{ title: '台数', field: 'taishu', align: 'center', width: "60" },
{ title: '启用日期', field: 'qiyongriqi', align: 'center', width: "110" },
{ title: '正常使用(台)', field: 'zhengchang', align: 'center', width: "110" },
{ title: '待修(台)', field: 'daixiu', align: 'center', width: "90" },
{ title: '在修(台)', field: 'zaixiu', align: 'center', width: "90" },
{ title: '闲置(台)', field: 'xianzhi', align: 'center', width: "90" },
{ title: '其他(台)', field: 'qita', align: 'center', width: "90" },
{ title: '其它(说明原因)', field: 'yuanyin', align: 'center', width: "125" },
]
];
break;
case '2':
break;
case '3':
break;
case '4':
break;
case '5':
break;
case '6':
break;
case '7':
break;
case '8':
break;
}
table.render({
elem: '#myTable',
url: '/QingLong/zbdc/getQueryXxhsb',
where: {
area_id: $("#xzqhId").val(),
school_type_id: $("#xxlxId").val(),
dcb_id: $("#flId").val()
},
cellExpandedMode: "tips",
height: 'full-70',
page: {
limit: 15
, layout: ['count', 'prev', 'page', 'next', 'skip']
, prev: "上一页"
, next: "下一页"
},
cols:
customCols
,
// skin: 'line',
defaultToolbar: []
});
}
form.on('submit(user-query)', function () {
tableRender()
// 阻止表单的默认提交行为
return false;
});
form.on('select(xzqh)', function () {
tableRender();
// 阻止表单的默认提交行为
return false;
});
form.on('select(xxlx)', function () {
tableRender();
// 阻止表单的默认提交行为
return false;
});
});
</script>
</body>
</html>