@ued_fpi/data-visual 1.4.26 → 1.4.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,10 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
53
53
  method: "POST",
54
54
  url: "/bmp-mission-center-server/api/v1/parkStatistics/countByStatusForPark",
55
55
  data: {
56
- isAccessPermission: props.isAccessPermission
56
+ alarmTypeCodeList: ["automonitor_over", "automonitor_minute_over"],
57
+ // 过滤预警事件
58
+ isAccessPermission: props.isAccessPermission,
59
+ missionTypeCodeList: ["alarm"]
57
60
  // startTime: dayjs().startOf('day').valueOf(),
58
61
  // endTime: dayjs().endOf('day').valueOf()
59
62
  }
@@ -70,6 +73,9 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
70
73
  method: "POST",
71
74
  url: "/bmp-mission-center-server/api/v1/parkStatistics/countByMissionLevel",
72
75
  data: {
76
+ alarmTypeCodeList: ["automonitor_over", "automonitor_minute_over"],
77
+ // 过滤预警事件
78
+ missionTypeCodeList: ["alarm"],
73
79
  missionStatusList: [0, 1],
74
80
  isAccessPermission: props.isAccessPermission
75
81
  // startTime: dayjs().startOf('day').valueOf(),
@@ -98,6 +104,9 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
98
104
  method: "POST",
99
105
  url: "/bmp-mission-center-server/api/v1/missionRecord/pc/queryMissionRecordInfoPage",
100
106
  data: {
107
+ alarmTypeCodeList: ["automonitor_over", "automonitor_minute_over"],
108
+ // 过滤预警事件
109
+ missionTypeCodeList: ["alarm"],
101
110
  missionStatusList: [0, 1],
102
111
  missionLevelCodeList: [activeTab.value],
103
112
  limit,
@@ -85,14 +85,14 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
85
85
  // 固定车
86
86
  appointCar: null,
87
87
  // 预约车
88
- tempCar: null,
89
- // 临时车
88
+ specialCar: null,
89
+ // 特殊车
90
90
  other: null
91
91
  // 其他车
92
92
  });
93
93
  const commitmentInfos = vue.ref([
94
94
  { title: "固定车", key: "fixCar" },
95
- { title: "临时车", key: "tempCar" },
95
+ { title: "特殊车", key: "specialCar" },
96
96
  { title: "预约车", key: "appointCar" },
97
97
  { title: "其他车", key: "other" }
98
98
  ]);