|
@@ -76,7 +76,7 @@
|
|
|
<el-table
|
|
|
:data="mapStore.currentAllPointList"
|
|
|
@row-click="handleView"
|
|
|
- @row-dblclick="handleDbView({ scoped })"
|
|
|
+ @row-dblclick="handleDbView"
|
|
|
>
|
|
|
<el-table-column label="序号" align="center" type="index" width="50" />
|
|
|
<el-table-column
|
|
@@ -95,17 +95,17 @@
|
|
|
<div
|
|
|
v-if="scope.row.ty == '无轨迹'"
|
|
|
class="point-box"
|
|
|
- style="background: rgba(255, 127, 0, 0.8)"
|
|
|
+ style="background: rgba(255, 127, 0, 0.4)"
|
|
|
></div>
|
|
|
<div
|
|
|
v-if="scope.row.ty == '有轨迹'"
|
|
|
class="point-box"
|
|
|
- style="background: rgba(0, 128, 255, 0.8)"
|
|
|
+ style="background: rgba(0, 128, 255, 0.4)"
|
|
|
></div>
|
|
|
<div
|
|
|
v-if="scope.row.ty == '无坐标'"
|
|
|
class="point-box"
|
|
|
- style="background: rgba(248, 152, 152, 0.8)"
|
|
|
+ style="background: rgba(248, 152, 152, 0.4)"
|
|
|
></div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -133,7 +133,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { computed, onMounted, ref } from 'vue';
|
|
|
+import { watch, onMounted, ref } from 'vue';
|
|
|
import titleContent from './TitleContent.vue';
|
|
|
import * as echarts from 'echarts';
|
|
|
import {
|
|
@@ -147,7 +147,7 @@ import {
|
|
|
import { stackRightOptions, stackLeftOptions } from '@/utils/chartsOptions.js';
|
|
|
import { useMapStore } from '@/stores/mapStore.js';
|
|
|
import { useDrawPointStore } from '@/stores/drawPointManage.js';
|
|
|
-import { addPoint } from '@/utils/map/mapOperation.js';
|
|
|
+import { addPoint, gotoPosition } from '@/utils/map/mapOperation.js';
|
|
|
const partitionData = ref({});
|
|
|
const mapStore = useMapStore();
|
|
|
const drawPointStore = useDrawPointStore();
|
|
@@ -228,10 +228,6 @@ const getBarData = async () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-const activeName = ref('1');
|
|
|
-
|
|
|
-const handleClick = () => {};
|
|
|
-
|
|
|
const clickBlbh = async (scope) => {
|
|
|
try {
|
|
|
const row = scope.row;
|
|
@@ -250,20 +246,23 @@ const clickBlbh = async (scope) => {
|
|
|
|
|
|
const handleView = (row) => {
|
|
|
if (row?.x && row?.y) {
|
|
|
- let color = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.5)' : 'rgba(255, 127, 0, 0.5)';
|
|
|
- let borderColor = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.9)' : 'rgba(255, 127, 0, 0.9)';
|
|
|
- addPoint([{ x: row.x, y: row.y }], 'clickView', {
|
|
|
+ let color = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.8)' : 'rgba(255, 127, 0, 0.8)';
|
|
|
+ let borderColor = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 1)' : 'rgba(255, 127, 0, 1)';
|
|
|
+ addPoint([row], 'clickView', {
|
|
|
color: color,
|
|
|
borderColor: borderColor
|
|
|
});
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-const handleDbView = async (scope) => {
|
|
|
+const handleDbView = async (row) => {
|
|
|
try {
|
|
|
- const row = scope.row;
|
|
|
+ if (row?.x && row?.y) {
|
|
|
+ let color = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.8)' : 'rgba(255, 127, 0, 0.8)';
|
|
|
+ gotoPosition(row, color);
|
|
|
+ }
|
|
|
const res = await getTrajectorPointOnPeopleById({
|
|
|
- id: row.id
|
|
|
+ id: row?.id
|
|
|
});
|
|
|
if (res.code == 200) {
|
|
|
drawPointStore.currentSelectName = row.name;
|