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

35 lines
628 B

import moment from "moment/moment";
1 year ago
export const searchFormList = [
{
label: "方向:",
key: "direction",
type: "select",
options: {
options: [
{
value: 1,
label: "菏泽方向",
},
{
value: 3,
label: "济南方向",
},{
value: '',
label: "双向",
}
],
},
},
{
label: "时间范围:",
key: "time",
type: "datePicker",
default:[moment().format('YYYY-MM-DD'),moment().format('YYYY-MM-DD')],
1 year ago
options: {
format: "yyyy-MM-dd",
type: "daterange",
},
},
];