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 moment from "moment/moment";
|
|
|
|
|
|
|
|
|
|
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')],
|
|
|
|
|
options: {
|
|
|
|
|
format: "yyyy-MM-dd",
|
|
|
|
|
type: "daterange",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
];
|