| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!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/dataDictionary.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="container-fuild wrapper wrapper-content animated fadeInRight">
- <div class="th-box">
- <div class="form-inline th-bar clearfix">
- <div class="form-group time-box">
- <i class="tub fa fa-search"></i>
- <input type="text" class="form-control" style="min-width: 248px;" id="sc_keyWords" placeholder="请输入字典标识、字典项名称">
- </div>
- <div class="form-group tool_bars pull-right">
- <input type="button" class="btn_gray" id="sc_btns" value="搜索" />
- <input type="button" class="btn_gray" authorize="yes" id="HY_addR" onclick="btn_addR()" value="添加" />
- <input type="button" class="btn_gray" authorize="yes" id="HY_editR" onclick="btn_editR()" value="修改" />
- <input type="button" class="btn_gray" authorize="yes" id="HY_deleteR" onclick="btn_deleteR()" value="删除" />
- </div>
- </div>
- </div>
- <div class="treeTable clearfix">
- <div class="tree col-md-4">
- <div class="trTitle"> 字典类别</div>
- <table id="table1" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-align="center" data-formatter="setCodeLeft">编号</th>
- <th data-field="dictionaryname" data-align="center" data-formatter="oper" data-events="operateEvents">字典名称
- <span class="tool_bars">
- <a class="tjzd" title="添加字典" authorize="yes" id="HY_addL" onclick="btn_addL()"><i class="addZiDian"></i></a>
- </span>
- </th>
- </tr>
- </thead>
- </table>
- </div>
- <div class="tableCon col-md-8">
- <div class="trTitle"> 字典项列表</div>
- <div class="tableBox">
- <table id="table2" data-row-style="rowStyle" data-pagination="true" data-query-params="getParams" data-click-to-select="true">
- <thead>
- <tr>
- <th data-checkbox="true" data-align="center"></th>
- <th data-align="center" data-formatter="setCodeRight">编号</th>
- <th data-field="dictionarycode" data-align="center">字典标识</th>
- <th data-field="name" data-align="center">字典项名称</th>
- <th data-field="projectname" data-class="dic_pro" data-align="center">所属项目</th>
- <th data-field="describe" data-align="center">备注</th>
- <th data-field="sort" data-align="center">排序编号</th>
- </tr>
- </thead>
- </table>
- </div>
- </div>
- </div>
- </div>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="./js/dataDictionary.js"></script>
- </body>
- </html>
|