From 2b543ca35ad4697e31225829be13e375cd2b0259 Mon Sep 17 00:00:00 2001
From: zs <zhoushuai@zbooksoft.com>
Date: 星期三, 04 二月 2026 16:46:00 +0800
Subject: [PATCH] 成果资料退回后需要删除对应附件
---
src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp b/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
index eb1d6ac..8ef56b9 100644
--- a/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
+++ b/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
@@ -73,6 +73,11 @@
<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>
@@ -134,9 +139,11 @@
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",
--
Gitblit v1.9.1