Browse Source

修改 协调调度记录 搜索弹窗无内容

wangqin
刘朋 1 year ago
parent
commit
79b16965ec
  1. 26
      ruoyi-ui/src/views/JiHeExpressway/common/PresetFormItems.js
  2. 22
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/coordinateSchedulingRecords/data.js

26
ruoyi-ui/src/views/JiHeExpressway/common/PresetFormItems.js

@ -205,15 +205,30 @@ export const startEndStation = {
}, },
}; };
// export const direction = {
// label: "方向:",
// key: "direction",
// required: true,
// type: "select",
// options: {
// options: [
// // { key: "济南方向", label: "济南方向" },
// // { key: "菏泽方向", label: "菏泽方向" },
// ],
// },
// };
export const direction = { export const direction = {
label: "方向:", label: "路段方向:",
key: "direction", key: "direction",
required: true, type: "CheckboxGroup",
type: "select", isAlone: true,
default: [],
options: { options: {
options: [ options: [
// { key: "济南方向", label: "济南方向" }, { key: "1", label: "济南方向" },
// { key: "菏泽方向", label: "菏泽方向" }, { key: "3", label: "菏泽方向" },
{ key: "2", label: "双向" },
], ],
}, },
}; };
@ -290,6 +305,7 @@ export const eventLevel = {
}, },
}; };
export const laneOccupancy = { export const laneOccupancy = {
label: "车道占用:", label: "车道占用:",
key: "lang", key: "lang",

22
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/coordinateSchedulingRecords/data.js

@ -0,0 +1,22 @@
import * as PresetFormItems from "@screen/common/PresetFormItems.js";
import { merge, cloneDeep } from "lodash";
export const searchFormList = [
PresetFormItems.eventType,
PresetFormItems.direction,
{
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.startStation,
PresetFormItems.endStation
];
Loading…
Cancel
Save