@ued_fpi/data-visual 1.4.27 → 1.4.29

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.
@@ -37,7 +37,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
37
37
  props: {
38
38
  isAccessPermission: {
39
39
  type: Boolean,
40
- default: true
40
+ default: false
41
41
  }
42
42
  },
43
43
  emits: ["clickItem"],
@@ -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,
@@ -114,7 +123,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
114
123
  missionLevelName: item.missionLevelName,
115
124
  startTimeStr: item.startTimeStr,
116
125
  missionSuperviseStatus: item.missionSuperviseStatus,
117
- description: item.description
126
+ description: item.description,
127
+ isAccessPermission: props.isAccessPermission
118
128
  };
119
129
  });
120
130
  cardData.value.push(...d);