You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import * as PresetFormItems from "@screen/pages/control/event/event/FormEvent/PresetFormItems.js";
|
|
|
|
import { merge, cloneDeep } from "lodash";
|
|
|
|
|
|
|
|
export const searchFormList = [
|
|
|
|
{
|
|
|
|
label: "预案名称:",
|
|
|
|
key: "planName",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "事件分类:",
|
|
|
|
key: "eventCategory",
|
|
|
|
type: "RadioGroup",
|
|
|
|
options: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
key: "1",
|
|
|
|
label: "交通事件",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "2",
|
|
|
|
label: "感知事件",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// {
|
|
|
|
// 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.station,
|
|
|
|
// label: "开始桩号:",
|
|
|
|
// required: false,
|
|
|
|
// },
|
|
|
|
// merge(cloneDeep(PresetFormItems.station), {
|
|
|
|
// options: {
|
|
|
|
// options: [
|
|
|
|
// {
|
|
|
|
// key: "endStakeMark[0]",
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// key: "endStakeMark[1]",
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// label: "结束桩号:",
|
|
|
|
// required: false,
|
|
|
|
// }),
|
|
|
|
];
|