Нет описания

performanceReduce.html 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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="../js/layui/css/layui.css">
  10. <link rel="stylesheet" href="./css/department.css"></link>
  11. <title>绩效减分</title>
  12. <style>
  13. .toolBar {
  14. padding: 15px 0;
  15. border-bottom: 1px solid #ccc;
  16. }
  17. .treeTable {
  18. height: 400px;
  19. }
  20. .tool_downs{
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .tool_downs span{
  25. display: block;
  26. width: 100%;
  27. height: 100%;
  28. text-align: center;
  29. }
  30. .tool_downs a{
  31. display: block;
  32. list-style: none;
  33. float: left;
  34. padding-left: 10px;
  35. }
  36. .inpBox {
  37. width: 240px;
  38. }
  39. .inpBox input {
  40. width: 240px;
  41. }
  42. </style>
  43. </head>
  44. <body class="gray-bg">
  45. <div class="container-fluid wrapper-content animated fadeInRight">
  46. <div class="daoHang clearfix">
  47. <div class="dhLeft">
  48. <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>&gt;<a href="javaScript:;">绩效考评</a>&gt;<a href=""
  49. class="nowPosition">绩效减分</a></sapn>
  50. </div>
  51. <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
  52. </div>
  53. <div class="toolBar clearfix">
  54. <div class="toolRight">
  55. <span>
  56. 部门:
  57. <div class="inpBox">
  58. <input type="text" class="inps" />
  59. <input type="hidden" id="PID">
  60. <i class="Cleans fa fa-close"></i>
  61. <i class="xl xl_one"></i>
  62. <div class="addTree xlAdd">
  63. <ul id="addTreeDemo" class="ztree"></ul>
  64. </div>
  65. </div>
  66. </span>
  67. <span>
  68. 开始时间:
  69. <input id="starttime" type="text" class="">
  70. </span>
  71. <span>
  72. 结束时间:
  73. <input id="endtime" type="text" class="">
  74. </span>
  75. <button class="btns searchGo">搜索</button>
  76. <button class="btns addBtn">添加</button>
  77. </div>
  78. </div>
  79. <div class="treeTable clearfix">
  80. <div class="tableCon col-md-12">
  81. <table id="tableList" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  82. <thead>
  83. <tr>
  84. <!-- <th data-checkbox="true" data-align="center"></th> -->
  85. <th data-align="center" data-formatter="setCode">编号</th>
  86. <th data-field="F_WorkOrderId" data-align="center">工单编号</th>
  87. <th data-field="F_DeptName" data-align="center">部门名称</th>
  88. <th data-field="F_Evaluation" data-align="center">考评内容</th>
  89. <th data-field="F_Remarks" data-align="center">备注</th>
  90. <th data-align="center" data-formatter="operation">操作</th>
  91. </tr>
  92. </thead>
  93. <tbody id="tbody"></tbody>
  94. </table>
  95. </div>
  96. </div>
  97. </div>
  98. <script src="../css/layer/layer.js"></script>
  99. <script src="../css/laydate/laydate.js"></script>
  100. <script src="../js/zTree/jquery.ztree.core.js"></script>
  101. <script src="./js/department.js"></script>
  102. <script src="./js/performanceReduce.js"></script>
  103. </body>
  104. </html>