|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<DragWindow
|
|
|
v-if="show"
|
|
|
- @onClose="$emit('update:show', false)"
|
|
|
+ @onClose="map.removeLayer(state.areaLayer), $emit('update:show', false)"
|
|
|
title="预警配置"
|
|
|
v-model:layout="state.layout"
|
|
|
close
|
|
@@ -68,16 +68,20 @@
|
|
|
<div class="expend-tree __hover" @click="onAddArea">新增区域</div>
|
|
|
</div>
|
|
|
<el-tree
|
|
|
+ ref="ref_areaTree"
|
|
|
class="tree"
|
|
|
:data="state.areaList"
|
|
|
:props="areaProps"
|
|
|
node-key="id"
|
|
|
+ :filter-node-method="areaFilterNode"
|
|
|
>
|
|
|
<template #default="{ node, data }">
|
|
|
<span class="custom-tree-node">
|
|
|
<span>{{ data.name }}</span>
|
|
|
<span>
|
|
|
<SvgIcon name="edit" size="12" class="__hover" @click.stop="onEditArea(data)"/>
|
|
|
+ <SvgIcon name="del" size="12" class="__hover" @click.stop="onDelArea(data)"/>
|
|
|
+ <el-switch v-model="data.show"/>
|
|
|
</span>
|
|
|
</span>
|
|
|
</template>
|
|
@@ -94,11 +98,18 @@ import ruleDetail from "./rule-detail.vue";
|
|
|
import areaForm from "./area-form.vue";
|
|
|
import DragWindow from '../components/drag-window.vue'
|
|
|
import { Search, Refresh } from "@element-plus/icons-vue";
|
|
|
+import {warnAreaDelete, warnAreaQueryAll} from "@/api/modules/web/area";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
+import * as layer from "ol/layer";
|
|
|
+import * as format from "ol/format";
|
|
|
+import * as source from "ol/source";
|
|
|
+import * as style from "ol/style";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
const props = defineProps({
|
|
|
show: {},
|
|
|
- mapFunc: {}
|
|
|
+ mapFunc: {},
|
|
|
+ map: {},
|
|
|
})
|
|
|
const state: any = reactive({
|
|
|
layout: {
|
|
@@ -106,28 +117,28 @@ const state: any = reactive({
|
|
|
left: 70,
|
|
|
top: 10
|
|
|
},
|
|
|
- tab: 1,
|
|
|
+ tab: 2,
|
|
|
loading: false,
|
|
|
text: '',
|
|
|
+ textReal: '',
|
|
|
rulesList: [],
|
|
|
ruleDetail: {
|
|
|
transfer: {},
|
|
|
show: false
|
|
|
},
|
|
|
- areaList: [
|
|
|
- {
|
|
|
- id: 'area-1',
|
|
|
- name: '区域-1',
|
|
|
- }
|
|
|
- ]
|
|
|
+ areaList: [],
|
|
|
+ areaLayer: null
|
|
|
})
|
|
|
const ruleProps = {
|
|
|
children: 'children'
|
|
|
}
|
|
|
const areaProps = {
|
|
|
- children: 'children'
|
|
|
+ children: 'children',
|
|
|
+ label: 'name'
|
|
|
}
|
|
|
+
|
|
|
const ref_rulesTree = ref()
|
|
|
+const ref_areaTree = ref()
|
|
|
watch(() => props.show, (n) => {
|
|
|
if (n) {
|
|
|
initData()
|
|
@@ -135,25 +146,76 @@ watch(() => props.show, (n) => {
|
|
|
})
|
|
|
const initData = () => {
|
|
|
state.loading = true
|
|
|
- setTimeout(() => {
|
|
|
- const arr = []
|
|
|
- for (let i = 0; i <= 5; i++) {
|
|
|
- const obj = {
|
|
|
- id: i + '',
|
|
|
- label: '模型' + i,
|
|
|
- children: []
|
|
|
- }
|
|
|
- for (let k = 1; k <= i; k++) {
|
|
|
- obj.children.push({
|
|
|
- id: i + '-' + k,
|
|
|
- label: '规则' + i + '-' + k
|
|
|
+ if (state.tab == 1) {
|
|
|
+
|
|
|
+ } else {
|
|
|
+ warnAreaQueryAll().then(res => {
|
|
|
+ state.areaList = res.data
|
|
|
+ state.areaList.forEach(v => {
|
|
|
+ v.show = true
|
|
|
+ })
|
|
|
+ setTimeout(() => {
|
|
|
+ ref_areaTree.value?.filter(state.textReal)
|
|
|
+ state.loading = false
|
|
|
+ }, 100)
|
|
|
+ drawArea()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // setTimeout(() => {
|
|
|
+ // const arr = []
|
|
|
+ // for (let i = 0; i <= 5; i++) {
|
|
|
+ // const obj = {
|
|
|
+ // id: i + '',
|
|
|
+ // label: '模型' + i,
|
|
|
+ // children: []
|
|
|
+ // }
|
|
|
+ // for (let k = 1; k <= i; k++) {
|
|
|
+ // obj.children.push({
|
|
|
+ // id: i + '-' + k,
|
|
|
+ // label: '规则' + i + '-' + k
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // arr.push(obj)
|
|
|
+ // }
|
|
|
+ // state.rulesList = arr
|
|
|
+ // state.loading = false
|
|
|
+ // }, 1000)
|
|
|
+}
|
|
|
+const drawArea = () => {
|
|
|
+ if (!state.areaLayer) {
|
|
|
+ state.areaLayer = new layer.Vector({
|
|
|
+ zIndex: 1000,
|
|
|
+ style: (f) => {
|
|
|
+ return new style.Style({
|
|
|
+ stroke: new style.Stroke({
|
|
|
+ color: f.get("__data")?.lineColor,
|
|
|
+ width: f.get("__data")?.lineWidth,
|
|
|
+ }),
|
|
|
+ fill: new style.Fill({
|
|
|
+ color: f.get("__data")?.fillColor,
|
|
|
+ }),
|
|
|
})
|
|
|
}
|
|
|
- arr.push(obj)
|
|
|
+ });
|
|
|
+ props.map.addLayer(state.areaLayer)
|
|
|
+ }
|
|
|
+ const features: any = []
|
|
|
+ state.areaList.forEach(v => {
|
|
|
+ if (v.show) {
|
|
|
+ try {
|
|
|
+ const feat: any = new format.WKT().readFeature(v.location)
|
|
|
+ feat.set('__data', v)
|
|
|
+ features.push(feat)
|
|
|
+ } catch (e) {
|
|
|
+ console.error('异常的预警区域', v)
|
|
|
+ }
|
|
|
}
|
|
|
- state.rulesList = arr
|
|
|
- state.loading = false
|
|
|
- }, 1000)
|
|
|
+ })
|
|
|
+ const s = new source.Vector({
|
|
|
+ features: features,
|
|
|
+ wrapX: false
|
|
|
+ })
|
|
|
+ state.areaLayer.setSource(s)
|
|
|
}
|
|
|
const expendRules = () => {
|
|
|
const flag = JSON.parse(JSON.stringify(rulesExpandAllCpt.value))
|
|
@@ -171,8 +233,10 @@ const onAddRule = (row) => {
|
|
|
}
|
|
|
const onAddArea = (row) => {
|
|
|
const config = {
|
|
|
+ mode: 'add',
|
|
|
featureType: 'Polygon',
|
|
|
wkt: '',
|
|
|
+ name: '',
|
|
|
polyColor: 'rgba(231,18,18,0.53)', // Polygon的填充色,默认蓝色
|
|
|
polyBorderColor: 'rgba(231,18,18,0.53)', // Polygon的边框颜色,默认蓝色
|
|
|
polyBorderWidth: 2, // Polygon的边框宽度,默认1
|
|
@@ -187,11 +251,14 @@ const onAddArea = (row) => {
|
|
|
}
|
|
|
const onEditArea = (row) => {
|
|
|
const config = {
|
|
|
+ mode: 'edit',
|
|
|
featureType: 'Polygon',
|
|
|
- wkt: 'POLYGON((110.10212241843107 19.31790648240469,111.12312792246837 18.750781049337483,110.25884201127086 17.952069610196993,110.10212241843107 19.31790648240469))',
|
|
|
- polyColor: 'rgba(231,18,18,0.53)', // Polygon的填充色,默认蓝色
|
|
|
- polyBorderColor: 'rgba(231,18,18,0.53)', // Polygon的边框颜色,默认蓝色
|
|
|
- polyBorderWidth: 2, // Polygon的边框宽度,默认1
|
|
|
+ wkt: row.location,
|
|
|
+ name: row.name,
|
|
|
+ id: row.id,
|
|
|
+ polyColor: row.fillColor, // Polygon的填充色,默认蓝色
|
|
|
+ polyBorderColor: row.lineColor, // Polygon的边框颜色,默认蓝色
|
|
|
+ polyBorderWidth: row.lineWidth, // Polygon的边框宽度,默认1
|
|
|
}
|
|
|
props.mapFunc.formDrawEdit({
|
|
|
config: config,
|
|
@@ -201,15 +268,42 @@ const onEditArea = (row) => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+const onDelArea = (row) => {
|
|
|
+ ElMessageBox.confirm(`请确认是否删除${row.name}?`, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ } as any).then(() => {
|
|
|
+ state.loading = true
|
|
|
+ warnAreaDelete({id: row.id}).then(res => {
|
|
|
+ ElMessage.success('删除成功!')
|
|
|
+ initData()
|
|
|
+ })
|
|
|
+ }).catch(() => {})
|
|
|
+}
|
|
|
const onSearch = () => {
|
|
|
+ state.textReal = JSON.parse(JSON.stringify(state.text))
|
|
|
+ initData()
|
|
|
+}
|
|
|
+const areaFilterNode = (value, data) => {
|
|
|
+ if (!value) return true
|
|
|
+ return data.name?.includes(value)
|
|
|
+}
|
|
|
+watch(() => state.textReal, (n) => {
|
|
|
if (state.tab == 1) {
|
|
|
-
|
|
|
+ ref_rulesTree.value?.filter(n)
|
|
|
} else {
|
|
|
-
|
|
|
+ ref_areaTree.value?.filter(n)
|
|
|
}
|
|
|
-}
|
|
|
+})
|
|
|
+watch(() => state.tab, () => {
|
|
|
+ onSearch()
|
|
|
+})
|
|
|
onMounted(() => {
|
|
|
- initData()
|
|
|
+ // initData()
|
|
|
+})
|
|
|
+defineExpose({
|
|
|
+ initData,
|
|
|
})
|
|
|
</script>
|
|
|
|