diff --git a/CHANGELOG-BETA.md b/CHANGELOG-BETA.md
index e110f822d..fa9707937 100644
--- a/CHANGELOG-BETA.md
+++ b/CHANGELOG-BETA.md
@@ -6,6 +6,8 @@
1. 【server】优化 构建代码未变动流程打断触发器未传入原因(statusMsg)(感谢@烛孩)
2. 【server】修复 项目控制台日志删除弹窗未能正常关闭(感谢@%)
+3. 【server】修复 脚本日志时间筛选不生效(感谢[@zhaozxc2010](https://gitee.com/zhaozxc2010) [Gitee issues I8ZNKL](https://gitee.com/dromara/Jpom/issues/I8ZNKL) )
+
------
## 2.11.2.0 (2024-01-22)
diff --git a/web-vue/src/pages/node/node-layout/other/script-log.vue b/web-vue/src/pages/node/node-layout/other/script-log.vue
index dbdaab896..562b11fe2 100644
--- a/web-vue/src/pages/node/node-layout/other/script-log.vue
+++ b/web-vue/src/pages/node/node-layout/other/script-log.vue
@@ -36,7 +36,15 @@
{{ val }}
{
+ if (!dateString[0] || !dateString[1]) {
+ this.listQuery.createTimeMillis = ''
+ } else {
+ this.listQuery.createTimeMillis = `${dateString[0]} ~ ${dateString[1]}`
+ }
+ }
+ "
allowClear
inputReadOnly
:show-time="{ format: 'HH:mm:ss' }"
diff --git a/web-vue/src/pages/script/script-log.vue b/web-vue/src/pages/script/script-log.vue
index 853a9ed58..00f0d403e 100644
--- a/web-vue/src/pages/script/script-log.vue
+++ b/web-vue/src/pages/script/script-log.vue
@@ -61,7 +61,15 @@
{{ val }}
{
+ if (!dateString[0] || !dateString[1]) {
+ this.listQuery.createTimeMillis = ''
+ } else {
+ this.listQuery.createTimeMillis = `${dateString[0]} ~ ${dateString[1]}`
+ }
+ }
+ "
allowClear
inputReadOnly
:show-time="{ format: 'HH:mm:ss' }"