hui
8 months ago
3 changed files with 137 additions and 41 deletions
@ -0,0 +1,63 @@ |
|||
// import * as PresetFormItems from "@screen/pages/control/event/event/FormEvent/PresetFormItems.js";
|
|||
import * as PresetFormItems from "@screen/common/PresetFormItems.js"; |
|||
// import { merge, cloneDeep } from "lodash";
|
|||
|
|||
export const searchFormList = [ |
|||
{ |
|||
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.directionCreater("CheckboxGroup"), |
|||
{ |
|||
label: "发布状态:", |
|||
key: "releaseStatus", |
|||
type: "checkboxGroup", |
|||
default: [], |
|||
options: { |
|||
options: [ |
|||
{ |
|||
key: "1", |
|||
label: "成功", |
|||
}, |
|||
{ |
|||
key: "0", |
|||
label: "失败", |
|||
}, |
|||
], |
|||
}, |
|||
}, |
|||
|
|||
// {
|
|||
// label: "内容:",
|
|||
// key: "releaseContent",
|
|||
// type: "input",
|
|||
// default: ""
|
|||
// },
|
|||
|
|||
// {
|
|||
// ...PresetFormItems.station,
|
|||
// label: "开始桩号:",
|
|||
// required: false,
|
|||
// },
|
|||
// merge(cloneDeep(PresetFormItems.station), {
|
|||
// options: {
|
|||
// options: [
|
|||
// {
|
|||
// key: "endStakeMark[0]",
|
|||
// },
|
|||
// {
|
|||
// key: "endStakeMark[1]",
|
|||
// },
|
|||
// ],
|
|||
// },
|
|||
// label: "结束桩号:",
|
|||
// required: false,
|
|||
// }),
|
|||
]; |
Loading…
Reference in new issue