mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-29 18:38:32 +08:00
fix 脚本日志时间筛选不生效
This commit is contained in:
parent
4e5cd1fd61
commit
ba5129865b
@ -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)
|
||||
|
@ -36,7 +36,15 @@
|
||||
<a-select-option v-for="(val, key) in triggerExecTypeMap" :key="key">{{ val }}</a-select-option>
|
||||
</a-select>
|
||||
<a-range-picker
|
||||
v-model:value="listQuery['createTimeMillis']"
|
||||
@change="
|
||||
(value, dateString) => {
|
||||
if (!dateString[0] || !dateString[1]) {
|
||||
this.listQuery.createTimeMillis = ''
|
||||
} else {
|
||||
this.listQuery.createTimeMillis = `${dateString[0]} ~ ${dateString[1]}`
|
||||
}
|
||||
}
|
||||
"
|
||||
allowClear
|
||||
inputReadOnly
|
||||
:show-time="{ format: 'HH:mm:ss' }"
|
||||
|
@ -61,7 +61,15 @@
|
||||
<a-select-option v-for="(val, key) in statusMap" :key="key">{{ val }}</a-select-option>
|
||||
</a-select>
|
||||
<a-range-picker
|
||||
v-model:value="listQuery['createTimeMillis']"
|
||||
@change="
|
||||
(value, dateString) => {
|
||||
if (!dateString[0] || !dateString[1]) {
|
||||
this.listQuery.createTimeMillis = ''
|
||||
} else {
|
||||
this.listQuery.createTimeMillis = `${dateString[0]} ~ ${dateString[1]}`
|
||||
}
|
||||
}
|
||||
"
|
||||
allowClear
|
||||
inputReadOnly
|
||||
:show-time="{ format: 'HH:mm:ss' }"
|
||||
|
Loading…
Reference in New Issue
Block a user