<!DOCTYPE HTML>
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
xmlns:th="http://www.thymeleaf.org">
|
<head>
|
<meta charset="utf-8">
|
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta name="viewport"
|
content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
|
<meta http-equiv="Cache-Control" content="no-siteapp"/>
|
<!--[if lt IE 9]>
|
<script type="text/javascript" src="/js/html5shiv.js"></script>
|
<script type="text/javascript" src="/js/respond.min.js"></script>
|
<![endif]-->
|
<link rel="stylesheet" type="text/css" href="/h-ui/css/H-ui.min.css"/>
|
<link rel="stylesheet" type="text/css" href="/h-ui.admin/css/H-ui.admin.css"/>
|
<link rel="stylesheet" type="text/css" href="/js/Hui-iconfont/1.0.8/iconfont.css"/>
|
<link rel="stylesheet" type="text/css" href="/h-ui.admin/skin/default/skin.css" id="skin"/>
|
<link rel="stylesheet" type="text/css" href="/h-ui.admin/css/style.css"/>
|
<!--[if IE 6]>
|
<script type="text/javascript" src="/js/DD_belatedPNG_0.0.8a-min.js"></script>
|
<script>DD_belatedPNG.fix('*');</script>
|
<![endif]-->
|
<title>巡查管理</title>
|
</head>
|
<body>
|
<nav class="breadcrumb"><i class="Hui-iconfont"></i> 首页 <span class="c-gray en">></span> 巡查管理 <span
|
class="c-gray en">></span> 巡查列表 <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
|
href="javascript:location.replace(location.href);" title="刷新"><i
|
class="Hui-iconfont"></i></a></nav>
|
<div class="page-container">
|
<div class="mt-20">
|
<table class="table table-border table-bordered table-hover table-bg table-sort">
|
<thead>
|
<tr class="text-c">
|
<th width="25"><input type="checkbox" name="" value=""></th>
|
<th width="100">场景名称</th>
|
<th width="40">场景地址</th>
|
<th width="90">巡查开始时间</th>
|
<th width="100">巡查结束时间</th>
|
<th width="100">操作</th>
|
</tr>
|
</thead>
|
<tbody>
|
<!--/*@thymesVar id="inspection" type="cn.flightfeather.supervision.domain.ds1.entity.Inspection"*/-->
|
<tr th:inline="text" class="text-c" th:each="inspection:${inspections}">
|
<td><input type="checkbox" value="1" name=""></td>
|
<td th:text="${inspection.scensename}">1</td>
|
<td class="text-l"><u style="cursor:pointer" class="text-primary"
|
th:onclick="'member_show(\'查看\',\'inspection-show?id='+${inspection.guid}+'\',\'10001\')'"
|
title="查看"><span th:text="${inspection.scenseaddress}">地址</span></u></td>
|
<td th:text="${#dates.format(inspection.executionstarttime,'yyyy-MM-dd HH:mm:ss')}">2014-6-11 11:11:42
|
</td>
|
<td class="td-status" th:text="${#dates.format(inspection.executionendtime,'yyyy-MM-dd HH:mm:ss')}">
|
2014-6-11 11:11:42
|
</td>
|
<td class="td-manage">
|
<a data-title="巡查问题列表" th:data-href="'/menu/problemlist-list?inspectionId='+${inspection.guid}" title="问题" href="javascript:;"
|
th:onclick="'Hui_admin_tab(this)'"
|
class="ml-5" style="text-decoration:none"><i class="Hui-iconfont">问题列表</i></a>
|
|
<a data-title="技防创新列表" th:data-href="'/menu/gitlist-list?inspectionId='+${inspection.guid}" title="技防" href="javascript:;"
|
th:onclick="'Hui_admin_tab(this)'"
|
class="ml-5" style="text-decoration:none"><i class="Hui-iconfont">技防列表</i></a></td>
|
</tr>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
<!--_footer 作为公共模版分离出去-->
|
<script type="text/javascript" src="/js/jquery/1.9.1/jquery.min.js"></script>
|
<script type="text/javascript" src="/js/layer/2.4/layer.js"></script>
|
<script type="text/javascript" src="/h-ui/js/H-ui.min.js"></script>
|
<script type="text/javascript" src="/h-ui.admin/js/H-ui.admin.js"></script> <!--/_footer 作为公共模版分离出去-->
|
|
<!--请在下方写此页面业务相关的脚本-->
|
<script type="text/javascript" src="/js/My97DatePicker/4.8/WdatePicker.js"></script>
|
<script type="text/javascript" src="/js/datatables/1.10.0/jquery.dataTables.min.js"></script>
|
<script type="text/javascript" src="/js/laypage/1.2/laypage.js"></script>
|
<script type="text/javascript">
|
/*用户-添加*/
|
function member_add(title, url, w, h) {
|
layer_show(title, url, w, h);
|
}
|
|
/*用户-查看*/
|
function member_show(title, url, id, w, h) {
|
layer_show(title, url, w, h);
|
}
|
|
/*用户-停用*/
|
function member_stop(obj, id) {
|
layer.confirm('确认要停用吗?', function (index) {
|
$.ajax({
|
type: 'POST',
|
url: '',
|
dataType: 'json',
|
success: function (data) {
|
$(obj).parents("tr").find(".td-manage").prepend('<a style="text-decoration:none" onClick="member_start(this,id)" href="javascript:;" title="启用"><i class="Hui-iconfont"></i></a>');
|
$(obj).parents("tr").find(".td-status").html('<span class="label label-defaunt radius">已停用</span>');
|
$(obj).remove();
|
layer.msg('已停用!', {icon: 5, time: 1000});
|
},
|
error: function (data) {
|
console.log(data.msg);
|
},
|
});
|
});
|
}
|
|
/*用户-启用*/
|
function member_start(obj, id) {
|
layer.confirm('确认要启用吗?', function (index) {
|
$.ajax({
|
type: 'POST',
|
url: '',
|
dataType: 'json',
|
success: function (data) {
|
$(obj).parents("tr").find(".td-manage").prepend('<a style="text-decoration:none" onClick="member_stop(this,id)" href="javascript:;" title="停用"><i class="Hui-iconfont"></i></a>');
|
$(obj).parents("tr").find(".td-status").html('<span class="label label-success radius">已启用</span>');
|
$(obj).remove();
|
layer.msg('已启用!', {icon: 6, time: 1000});
|
},
|
error: function (data) {
|
console.log(data.msg);
|
},
|
});
|
});
|
}
|
|
/*用户-编辑*/
|
function member_edit(title, url, id, w, h) {
|
layer_show(title, url, w, h);
|
}
|
|
/*密码-修改*/
|
function change_password(title, url, id, w, h) {
|
layer_show(title, url, w, h);
|
}
|
|
/*用户-删除*/
|
function member_del(obj, id) {
|
console.info(id);
|
layer.confirm('确认要删除吗?', function (index) {
|
$.ajax({
|
type: 'POST',
|
url: '/menu/domaincatalog-delete?id=' + id,
|
dataType: 'json',
|
success: function (data) {
|
$(obj).parents("tr").remove();
|
layer.msg('已删除!', {icon: 1, time: 1000});
|
},
|
error: function (data) {
|
console.log(data.msg);
|
},
|
});
|
});
|
}
|
</script>
|
</body>
|
</html>
|