No Description

dataDictionary.html 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="../Script/Common/huayi.load.js"></script>
  6. <script src="../Script/Common/huayi.config.js"></script>
  7. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  8. <link rel="stylesheet" href="../css/init.css" />
  9. <link rel="stylesheet" href="./css/dataDictionary.css" />
  10. <link rel="stylesheet" href="../css/Table/table1.css" />
  11. <title>系统管理-->数据字典</title>
  12. </head>
  13. <body class="gray-bg">
  14. <div class="daoHang clearfix">
  15. <div class="dhLeft">
  16. <sapn><i class="syIcon"></i>位置:
  17. <a id="ReIndex" href="javaScript:;">首页</a>&gt;
  18. <a href="javaScript:;">系统管理</a>&gt;
  19. <a href="javaScript:;">系统设置</a>&gt;
  20. <a href="javascript:location.reload()" class="now_position">数据字典</a>
  21. </sapn>
  22. </div>
  23. </div>
  24. <div class="container-fuild wrapper wrapper-content animated fadeInRight">
  25. <div class="th-box">
  26. <div class="form-inline th-bar clearfix">
  27. <div class="form-group time-box">
  28. <i class="tub fa fa-search"></i>
  29. <input type="text" class="form-control" style="min-width: 248px;" id="sc_keyWords" placeholder="请输入字典标识、字典项名称">
  30. </div>
  31. <div class="form-group tool_bars pull-right">
  32. <input type="button" class="btn_gray" id="sc_btns" value="搜索" />
  33. <input type="button" class="btn_gray" authorize="yes" id="HY_addR" onclick="btn_addR()" value="添加" />
  34. <input type="button" class="btn_gray" authorize="yes" id="HY_editR" onclick="btn_editR()" value="修改" />
  35. <input type="button" class="btn_gray" authorize="yes" id="HY_deleteR" onclick="btn_deleteR()" value="删除" />
  36. </div>
  37. </div>
  38. </div>
  39. <div class="treeTable clearfix">
  40. <div class="tree col-md-4">
  41. <div class="trTitle"> 字典类别</div>
  42. <table id="table1" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  43. <thead>
  44. <tr>
  45. <th data-align="center" data-formatter="setCodeLeft">编号</th>
  46. <th data-field="dictionaryname" data-align="center" data-formatter="oper" data-events="operateEvents">字典名称
  47. <span class="tool_bars">
  48. <a class="tjzd" title="添加字典" authorize="yes" id="HY_addL" onclick="btn_addL()"><i class="addZiDian"></i></a>
  49. </span>
  50. </th>
  51. </tr>
  52. </thead>
  53. </table>
  54. </div>
  55. <div class="tableCon col-md-8">
  56. <div class="trTitle"> 字典项列表</div>
  57. <div class="tableBox">
  58. <table id="table2" data-row-style="rowStyle" data-pagination="true" data-query-params="getParams" data-click-to-select="true">
  59. <thead>
  60. <tr>
  61. <th data-checkbox="true" data-align="center"></th>
  62. <th data-align="center" data-formatter="setCodeRight">编号</th>
  63. <th data-field="dictionarycode" data-align="center">字典标识</th>
  64. <th data-field="name" data-align="center">字典项名称</th>
  65. <th data-field="projectname" data-class="dic_pro" data-align="center">所属项目</th>
  66. <th data-field="describe" data-align="center">备注</th>
  67. <th data-field="sort" data-align="center">排序编号</th>
  68. </tr>
  69. </thead>
  70. </table>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <script src="../js/zTree/jquery.ztree.core.js"></script>
  76. <script src="./js/dataDictionary.js"></script>
  77. </body>
  78. </html>