| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <!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>
- .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: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: left;
- cursor: pointer;
- }
- </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="toolLeft">
- <button class="btns add">添加</button>
- </div>-->
- <div class="toolRight">
- <span>搜索内容:<input type="text" class="searCon input_" placeholder="请输入要搜索的关键字" style="width: 175px;height: 32px; border: 1px solid #ccc;" /></span>
-
- <span>是否审核通过:<select name="" id="isPass" class="select_">
- <option value="" selected="selected">全部</option>
- <option value="0">未审核</option>
- <option value="1">通过审核</option>
- <option value="-1">未通过</option>
- </select>
- </span>
- <span>是否提交审核:<select name="" id="isSub" class="select_">
- <option value="" selected="selected">全部</option>
- <option value="0">否</option>
- <option value="1">是</option>
- </select>
- </span>
-
- <button class="btns searchGo">搜索</button>
- <button class="btns addCon">知识条目添加</button>
- </div>
- </div>
- <div class="treeTable clearfix">
- <div class="tree col-md-3">
- <div class="trTitle">知识库目录</div>
- <div class="treeCon">
- <ul id="treeDemo" class="ztree">
- <!--类名为ztree是必须的-->
- </ul>
- </div>
-
- </div>
- <div class="tableCon col-md-9">
- <div class="trTitle"> 知识库列表</div>
- <table id="table1" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="state" data-checkbox="true" data-align="center"></th>
- <th data-align="center" data-formatter="setCode">编号</th>
- <th data-align="center" data-field="F_Title" data-formatter="detail">标题</th>
- <th data-field="F_Description" data-align="center" data-formatter="detail">内容</th>
- <th data-align="center" data-formatter="operationBtns">操作</th>
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- <p style="margin-top: 20px;"><button class="btns allDel">批量删除</button></p>
-
- </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/zhiShiKu.js"></script>
- </body>
-
-
- </html>
|