| | |
| | | <li>部门名称: <input class="easyui-textbox" id="deptName" |
| | | style="width:150px; height: 24px;"/> |
| | | </li> |
| | | <li>起止时间: |
| | | <input class="easyui-datebox" id="startDate" style="width:150px;height:24px"/> |
| | | - |
| | | <input class="easyui-datebox" id="endDate" style="width:150px;height:24px"/> |
| | | </li> |
| | | <li class="statistics_btn_row" style="display: flex;align-items:center;height:24px"> |
| | | <button class="pt-btn pt-btn-purple" onclick="utilizationStatistics()"><i class="fa fa-bar-chart"></i>开始统计 |
| | | </button> |
| | |
| | | |
| | | var wh = $(window).height(); |
| | | var deptName = $("#deptName").numberbox("getValue"); |
| | | var startDate = $("#startDate").datebox("getValue"); |
| | | var endDate = $("#endDate").datebox("getValue"); |
| | | |
| | | |
| | | var url = "utlStatistics/getUtlStatisticsByDept?deptName=" + deptName; |
| | | var url = "utlStatistics/getUtlStatisticsByDept?deptName=" + deptName + "&startData=" + startDate + "&endData=" + endDate; |
| | | $("#tb_utilizationForm").datagrid({ |
| | | rownumbers: true, |
| | | method: "get", |