Riku
2025-03-02 de6fd089b37613808e5a3bef38ecc0761f7456e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<template>
  <div>
    <el-button
      @click="dialogVisible = !dialogVisible"
      type="primary"
      class="el-button-custom p-events-auto"
      >走航融合</el-button
    >
    <CardDialog
      v-model="dialogVisible"
      title="走航融合"
      draggable
      :modal="false"
      width="400px"
    >
      <template #default>
        <el-row>
          <OptionMission v-model="mission"></OptionMission>
          <el-text size="small" :type="fusionData ? 'success' : 'warning'">{{
            fusionData ? '走航数据已融合' : '走航数据未融合'
          }}</el-text>
        </el-row>
        <el-row>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            :disabled="!gridCellList || !fusionData"
            @click="handleFusionClick"
          >
            {{ '叠加融合' }}
          </el-button>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            @click="handleGridClick"
          >
            {{ gridVisible ? '隐藏融合' : '显示融合' }}
          </el-button>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            :loading="loading"
            @click="handleUnderwayClick"
          >
            {{ underwayVisible ? '隐藏走航路线' : '显示走航路线' }}
          </el-button>
        </el-row>
        <el-row class="m-t-8">
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            @click="handleRankClick"
          >
            {{ rankVisible ? '隐藏排名' : '显示排名' }}
          </el-button>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            @click="handleDataClick"
          >
            {{ dataVisible ? '隐藏数据' : '显示数据' }}
          </el-button>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            @click="handleColorClick"
          >
            {{ isStandardColor ? '绘制对比色' : '绘制标准色' }}
          </el-button>
          <el-button
            type="primary"
            class="el-button-custom"
            size="small"
            @click="handleOpacityClick"
          >
            {{ !isOpacity ? '透明化' : '取消透明化' }}
          </el-button>
        </el-row>
      </template>
      <template #footer>
        <el-row justify="start" align="middle" class="p-b-2 one-row">
          <!-- <el-text size="small" type="warning">搜索范围</el-text> -->
        </el-row>
      </template>
    </CardDialog>
  </div>
</template>
<script setup>
import { ref, onMounted, onUnmounted, watch } from 'vue';
import moment from 'moment';
import { map, onMapMounted } from '@/utils/map/index_old';
import gridApi from '@/api/gridApi';
import { SatelliteProxy } from '../SatelliteProxy';
 
const satelliteProxy = new SatelliteProxy();
 
const props = defineProps({
  groupId: {
    type: Number,
    default: 3
  }
});
 
const dialogVisible = ref(false);
const mission = ref(undefined);
 
const gridCellList = ref(undefined);
const fusionData = ref(undefined);
const gridDataDetailMap = new Map();
 
const gridVisible = ref(true);
const underwayVisible = ref(false);
const rankVisible = ref(false);
const dataVisible = ref(false);
const isStandardColor = ref(true);
const isOpacity = ref(false);
 
// 检查走航数据是否和100米网格已融合
function checkUnderwayFusionResult() {
  const time = moment(mission.value.startTime).format('YYYY-MM-DD HH:mm:ss');
  gridApi.fetchGridData(props.groupId, time, 3).then((res) => {
    if (res.data.length > 0) {
      fusionData.value = res.data[0];
    } else {
      fusionData.value = undefined;
    }
  });
}
 
function resetButton() {
  gridVisible.value = true;
  underwayVisible.value = false;
  rankVisible.value = false;
  dataVisible.value = false;
  isStandardColor.value = true;
  isOpacity.value = false;
}
 
function prepareGrid(gridInfo) {
  satelliteProxy.gridPrepare(gridInfo);
}
 
// 绘制网格遥感数据值和网格颜色
function drawGrid(gridData) {
  satelliteProxy.drawGrid({ gridData, opacity: 1, zIndex: 11 });
}
 
watch(mission, (nV, oV) => {
  if (nV != oV) {
    checkUnderwayFusionResult();
    search(nV);
  }
});
 
watch(
  () => props.groupId,
  (nV, oV) => {
    if (dialogVisible.value && nV != oV) {
      gridApi.fetchGridCell(nV).then((res) => {
        gridCellList.value = res.data;
        prepareGrid(gridCellList.value);
      });
    }
  },
  {
    immediate: true
  }
);
 
watch(dialogVisible, (nV, oV) => {
  if (nV != oV) {
    gridApi.fetchGridCell(props.groupId).then((res) => {
      gridCellList.value = res.data;
      prepareGrid(gridCellList.value);
    });
  }
});
 
let selectedGridData;
// 叠加融合
function handleFusionClick() {
  // resetButton();
  const d = fusionData.value;
  if (gridDataDetailMap.has(d.id)) {
    const gridData = gridDataDetailMap.get(d.id);
    selectedGridData = gridData;
    drawGrid(gridData);
  } else {
    gridApi.fetchGridDataDetail(d.id, d.groupId).then((res) => {
      gridDataDetailMap.set(d.id, res.data);
      const gridData = res.data;
      selectedGridData = gridData;
      drawGrid(gridData);
    });
  }
}
 
function handleGridClick() {
  gridVisible.value = !gridVisible.value;
  satelliteProxy.changeVisibility({ showGridViews: gridVisible.value });
}
 
function handleUnderwayClick() {
  underwayVisible.value = !underwayVisible.value;
  underwayVisible.value ? draw() : mapLine.hideLine();
}
 
function handleRankClick() {
  rankVisible.value = !rankVisible.value;
  satelliteProxy.changeVisibility({ showRankTxt: rankVisible.value });
}
 
function handleDataClick() {
  dataVisible.value = !dataVisible.value;
  satelliteProxy.changeVisibility({ showDataTxt: dataVisible.value });
}
 
function handleColorClick() {
  isStandardColor.value = !isStandardColor.value;
  satelliteProxy.drawGrid({
    gridData: selectedGridData,
    useCustomColor: !isStandardColor.value,
    opacity: 1,
    zIndex: 11
  });
}
 
function handleOpacityClick() {
  isOpacity.value = !isOpacity.value;
  satelliteProxy.changeGridOpacity({ opacityValue: isOpacity.value ? 0.1 : 1 });
}
 
/**走航轨迹*******************************************************************/
import { FactorDatas } from '@/model/FactorDatas';
import sector from '@/utils/map/sector';
import mapLine from '@/utils/map/line';
import mapUtil from '@/utils/map/util';
import { fetchHistoryData } from '@/utils/factor/data';
import { useFetchData } from '@/composables/fetchData';
 
onMounted(() => (isUnmounted.value = false));
onUnmounted(() => {
  mapUtil.clearMap();
  isUnmounted.value = true;
});
 
const { loading, fetchData } = useFetchData(10000);
 
const isUnmounted = ref(false);
const deviceType = ref(undefined);
const drawMode = ref(0);
// 监测数据
const factorDatas = ref(new FactorDatas());
// pm2.5
const factorType = 6;
 
function onFetchData(dType, data) {
  if (isUnmounted.value) return;
  // todo 根据设备类型切换地图监测因子展示单选框、折线图复选框、数据表格复选框的因子类型
  deviceType.value = dType;
  factorDatas.value.setData(data, drawMode.value, () => {
    factorDatas.value.refreshHeight(factorType.value);
  });
}
 
function search(option) {
  const { deviceType, deviceCode, startTime, endTime } = option;
  // deviceType.value = deviceType;
  // deviceCode.value = deviceCode;
  const _startTime = moment(startTime).format('YYYY-MM-DD HH:mm:ss');
  const _endTime = moment(endTime).format('YYYY-MM-DD HH:mm:ss');
  fetchData((page, pageSize) => {
    return fetchHistoryData({
      deviceType,
      deviceCode,
      startTime: _startTime,
      endTime: _endTime,
      page,
      perPage: pageSize
    }).then((res) => onFetchData(deviceType, res.data));
  });
}
 
function draw() {
  // 刷新图例
  const factor = factorDatas.value.factor[factorType];
  sector.clearSector();
  factorDatas.value.refreshHeight(factorType);
  mapLine.drawLine(factorDatas.value, factor);
}
</script>