济菏高速业务端
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.

59 lines
1.3 KiB

1 year ago
import * as PresetFormItems from "@screen/pages/control/event/event/FormEvent/PresetFormItems.js";
1 year ago
import { warningType } from "@screen/utils/enum.js";
1 year ago
export const searchFormList = [
1 year ago
PresetFormItems.warningType,
// {
// label: "方向:",
// key: "direction",
// type: "RadioGroup",
// default: "1",
// options: {
// options: [
// {
// key: "1",
// label: "菏泽方向",
// },
// {
// key: "2",
// label: "双向",
// },
// {
// key: "3",
// label: "济南方向",
// },
// ],
// },
// },
1 year ago
{
label: "时间范围:",
key: "warningTime",
required: false,
type: "datePicker",
options: {
type: "daterange",
format: "yyyy-MM-dd HH:mm:ss",
valueFormat: "yyyy-MM-dd HH:mm:ss",
},
},
1 year ago
// {
// ...PresetFormItems.station,
// label: "开始桩号:",
// required: false,
// },
// merge(cloneDeep(PresetFormItems.station), {
// options: {
// options: [
// {
// key: "endStakeMark[0]",
// },
// {
// key: "endStakeMark[1]",
// },
// ],
// },
// label: "结束桩号:",
// required: false,
// }),
1 year ago
];