| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <!--<link rel="stylesheet" href="../css/layer/need/layer.css" />-->
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>知识库审核</title>
- <style>
- .toolBar {
- padding: 15px 0;
- border-bottom: 1px solid #ccc;
- }
- .boxCon table th {
- width: 20%;
- }
- .boxCon table td textarea {
- width: 100%;
- }
- .inpBox {
- border: 1px solid #a9a9a9;
- height: 27px;
- width: 55%;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- }
- .inps1,
- .inps4 {
- width: 100%;
- height: 24px;
- outline: none;
- border: 0;
- border-image-width: 0;
- padding: 0;
- padding-left: 3px;
- }
- .changeTitle, .changeKey, .addTitle, .addKey {
- width: 55%;
- }
- .xl {
- display: inline-block;
- background: url(../img/dropDown.png) no-repeat;
- height: 100%;
- background-position: center center;
- width: 20px;
- position: absolute;
- right: 0;
- top: 0px;
- background-color: #f7bc8b;
- cursor: pointer;
- }
- .xl:hover {
- background-color: #e6d523;
- }
- .addTree {
- background: #fff;
- position: absolute;
- width: 100%;
- border: 1px solid darkgrey;
- right: 0;
- top: 26px;
- display: none;
- height: 220px;
- overflow-y: auto;
- }
- .treeTable {
- height: 400px;
- /*overflow-y: auto;*/
- }
- .tree {
- height: 100%;
- }
- .trTitle {
- width: 100%;
- height: 34px;
- line-height: 34px;
- border-bottom: 1px solid #ebebeb;
- color: red;
- font-weight: 700;
- margin-bottom: 15px;
- }
- .treeCon {
- border: 1px solid #ebebeb;
- overflow-y: auto;
- }
- .ztree li {
- width: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .content {
- width: 270px;
- height: 25px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: left;
- }
- .detail {
- width: 80%;
- display: block;
- margin: 0 auto;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="container-fluid wrapper-content animated fadeInRight">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>><a href="javaScript:;">知识库</a>><a href="" class="nowPosition">知识库审核</a></sapn>
- </div>
- <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
- </div>
- <div class="toolBar clearfix">
- <div class="toolRight">
- <span>
- 动作:<select name="" id="action" class="select_">
- <option value="" selected="selected">全部</option>
- <option value="1">添加</option>
- <option value="2">修改</option>
- <option value="3">删除</option>
- </select>
- </span>
- <span>
- 审核状态:<select name="" id="isPass" class="select_">
- <option value="">全部</option>
- <option value="1">通过</option>
- <option value="0" selected="selected">未审核</option>
- <option value="-1">未通过</option>
- </select>
- </span>
- <button class="btns searchGo">搜索</button>
- </div>
- </div>
- <div class="treeTable clearfix">
- <div class="tableCon col-md-12">
- <table id="table1" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-checkbox="true" data-align="center"></th>
- <th data-align="center" data-formatter="setCode">编号</th>
- <th data-field="F_Action" data-formatter="shaction" data-align="left">动作</th>
- <th data-field="F_Title" data-align="center">标题</th>
- <th data-field="F_PreDescription" data-align="left" data-formatter="oper">修改前内容</th>
- <th data-field="F_AfterDescription" data-align="left" data-formatter="oper">修改后内容</th>
- <th data-field="F_ISPass" data-formatter="shstates" data-align="center">审核状态</th>
- <th data-field="F_AuditRemark" data-align="center">审核详情</th>
- <th data-align="center" data-formatter="caoZuo">操作</th>
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- <p style="margin-top:15px ;">
- <button class="btns pass">审核通过</button>
- <button class="btns noPass">审核不通过</button>
- </p>
- <input id="pre" type="hidden" />
- <input id="aft" type="hidden" />
- </div>
- </div>
- </div>
- <script src="../css/layer/layer.js"></script>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="../js/kindeditor/kindeditor-all-min.js"></script>
- <script src="../js/kindeditor/lang/zh-CN.js"></script>
- <script src="./js/zhiShiKuShenHe.js"></script>
- </body>
- </html>
|