2 changed files with 43 additions and 5 deletions
@ -0,0 +1,22 @@ |
|||
import * as PresetFormItems from "@screen/common/PresetFormItems.js"; |
|||
import { merge, cloneDeep } from "lodash"; |
|||
|
|||
export const searchFormList = [ |
|||
PresetFormItems.eventType, |
|||
PresetFormItems.direction, |
|||
{ |
|||
label: "时间范围:", |
|||
key: "daterange", |
|||
required: false, |
|||
type: "datePicker", |
|||
options: { |
|||
type: "daterange", |
|||
format: "yyyy-MM-dd HH:mm:ss", |
|||
valueFormat: "yyyy-MM-dd HH:mm:ss", |
|||
}, |
|||
}, |
|||
PresetFormItems.startStation, |
|||
PresetFormItems.endStation |
|||
|
|||
|
|||
]; |
Loading…
Reference in new issue