87 lines
3.5 KiB
HTML
87 lines
3.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>通知公告</title>
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/bootstrap.min.css">
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/dataTables.bootstrap.min.css">
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../layui/css/layui.css">
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/work/basic/proManager.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div>
|
||
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||
|
|
<header style="height: 100%">
|
||
|
|
<div align="left">
|
||
|
|
<table style="width: 100%">
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
<form class="form-inline" onsubmit="return false">
|
||
|
|
<div class="form-group">
|
||
|
|
公告标题:<input id="ggbt" type="text" class="form-control"placeholder="请输入标题">
|
||
|
|
发布日期:<input type="text" style="width: 15%;" class="form-control" readonly placeholder="请选择日期" id="startTime">
|
||
|
|
<span>~</span>
|
||
|
|
<input type="text" style="width: 15%;" class="form-control" readonly placeholder="请选择日期" id="endTime" value='@DateTime.Now.ToString("yyyy-MM-dd")'>
|
||
|
|
<!-- permission="sys:user:query"-->
|
||
|
|
<button id="searchBt" class="layui-btn layui-btn-sm" ><i class="layui-icon"></i>搜索</button>
|
||
|
|
<button id="createBt" class="layui-btn layui-btn-sm" onclick="insertAnnouncement()"><i class="layui-icon"></i>发布公告</button>
|
||
|
|
<input type="hidden" id="hidMinListDate" value="2021-01-01" />
|
||
|
|
<input type="hidden" id="hidMaxListDate" value='@DateTime.Now.ToString("yyyy-MM-dd")' />
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</td>
|
||
|
|
<!-- <td align="right">-->
|
||
|
|
<!-- <button class="layui-btn layui-btn-sm" onclick="addFeaturesInfo()">-->
|
||
|
|
<!-- <i class="layui-icon"></i>新增持证信息-->
|
||
|
|
<!-- </button>-->
|
||
|
|
<!-- </td>-->
|
||
|
|
<!-- <td align="right">
|
||
|
|
<button class="layui-btn layui-btn-sm" onclick="addPorject()">
|
||
|
|
<i class="layui-icon"></i> 添加
|
||
|
|
</button>
|
||
|
|
</td>-->
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<div class="widget-body no-padding">
|
||
|
|
<div id="dt-table-length"></div>
|
||
|
|
<table id="dt-table"
|
||
|
|
class="table table-striped table-bordered table-hover"
|
||
|
|
style="width: 100%">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width:5%">序号</th>
|
||
|
|
<th style="width:25%">公告标题</th>
|
||
|
|
<th>公告内容</th>
|
||
|
|
<th>姓名</th>
|
||
|
|
<th>是否已读</th>
|
||
|
|
<th>阅读时间</th>
|
||
|
|
<th style="width:8%">公告文件</th>
|
||
|
|
<th style="width:12%">发布日期</th>
|
||
|
|
<th>操作</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
<script type="text/javascript" src="../../../js/libs/jquery-3.6.0.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/jq.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/plugin/datatables/jquery.dataTables.min.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/plugin/datatables/dataTables.bootstrap.min.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/my/permission.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../layui/layui.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/publicJs.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/dict.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/work/ownPerson/Announcement.js"></script>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
</script>
|