| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!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="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="./css/departmentManage.css" />
- <link rel="stylesheet" href="../css/Table/table1.css" />
- <title>系统管理-->部门管理</title>
- </head>
- <body class="gray-bg">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:
- <a id="ReIndex" href="javaScript:;">首页</a>>
- <a href="javaScript:;">系统管理</a>>
- <a href="javaScript:;">权限管理</a>>
- <a href="javascript:location.reload()" class="now_position">部门管理</a>
- </sapn>
- </div>
- </div>
- <div class="wrapper wrapper-content animated fadeInRight pro_allocation">
- <div class="th-box">
- <div class="form-inline th-bar clearfix">
- <div class="form-group tool_bars pull-right">
- <input type="button" class="btn_gray" authorize="yes" id="HY_add" onclick="btn_add()" value="添加" />
- <input type="button" class="btn_gray" authorize="yes" id="HY_edit" onclick="btn_edit()" value="修改" />
- <input type="button" class="btn_gray" authorize="yes" id="HY_delete" onclick="btn_delete()" value="删除" />
- </div>
- </div>
- </div>
- <div class="tree">
- <ul id="treeDemo" class="ztree">
- <!--类名为ztree是必须的-->
- </ul>
- </div>
- </div>
- <!--添加弹出内容-->
- <div class="model addModel">
- <div class="box">
- <div class="btop clearfix">
- <p class="btl"><span>添加</span> ⌊ <span class="tps" style="color: red;"></span> ⌉ 部门</p>
- <p class="btr addBtr" title="关闭">X</p>
- </div>
- <div class="boxCon">
- <div>所属部门:
- <div class="inpBox">
- <input type="text" class="inps inps1" />
- <i class="xl xl_one"></i>
- <div class="addTree xlAdd">
- <ul id="addTreeDemo" class="ztree">
- </ul>
- </div>
- </div>
- </div>
- <div>部门名称:<input class="inps inps2" type="text" /></div>
- <div>排列序号:<input class="inps inps3" type="text" /></div>
- <div><button class="btns addCun">保存</button></div>
- </div>
- </div>
- </div>
- <!--删除弹出内容-->
- <div class="model delModel">
- <div class="box">
- <div class="btop clearfix">
- <p class="btl"><span>删除提示</span></p>
- <p class="btr delBtr" title="关闭">X</p>
- </div>
- <div class="boxCon" style="height: 150px;">
- 您确定删除 ⌊ <span class="delName" style="color: red;"></span> ⌉ ?
- <p style="margin-top: 30px;"><button class="btns sure">确定</button>
- <button class="btns return">取消</button></p>
- <!--<p style="color: red;">注:若该分类下包含知识库内容会一并删除</p>-->
- </div>
- </div>
- </div>
- <!--修改弹出内容-->
- <div class="model changeModel">
- <div class="box">
- <div class="btop clearfix">
- <p class="btl"><span>修改</span> ⌊ <span class="tps chtps" style="color: red;"></span> ⌉ 部门</p>
- <p class="btr changeBtr" title="关闭">X</p>
- </div>
- <div class="boxCon">
- <div>所属部门:
- <div class="inpBox">
- <input type="text" class="inps inps4" />
- <i class="xl xl_two"></i>
- <div class="addTree xlChange">
- <ul id="changeTreeDemo" class="ztree">
- </ul>
- </div>
- </div>
- </div>
- <div>部门名称:<input class="inps inps5" type="text" /></div>
- <div>排列序号:<input class="inps inps6" type="text" /></div>
- <div><button class="btns changeCun">保存</button></div>
- </div>
- </div>
- </div>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="../css/layer/layer.js"></script>
- <script src="./js/departmentManage.js"></script>
- </body>
- </html>
|