index.vue 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139
  1. <template>
  2. <div class="gis-layout">
  3. <EasyMapComponent
  4. class="map"
  5. @easyMapLoad="mapLoad"
  6. />
  7. <div class="gis-menu">
  8. <img class="gis-menu-bottom" src="@/assets/images/gis-layout/gis-layout-menu_bottom.png" alt=""/>
  9. <template v-for="item in menuCpt">
  10. <div class="gis-menu-item __hover" :class="{active: $route.name === item.name, max: String(item.meta.title).length >5}" @click="$router.push({name: item.name})">
  11. {{item.meta.title}}
  12. </div>
  13. </template>
  14. </div>
  15. <div class="gis-tools">
  16. <div class="gt-search __box-shadow">
  17. <el-autocomplete
  18. ref="ref_search"
  19. v-model="searchInput"
  20. :fetch-suggestions="searchHandleMapSearch"
  21. :popper-append-to-body="false"
  22. clearable
  23. :debounce="800"
  24. placeholder="请输入关键字进行搜索"
  25. @select="searchToMapLocation"
  26. >
  27. <template #default="{ item }">
  28. <div class="search-item __hover">
  29. <img :src="item.icon"/>
  30. <div class="name">{{item.name}}</div>
  31. </div>
  32. </template>
  33. </el-autocomplete>
  34. <div class="search-icon __hover" @click="ref_search.focus()">
  35. <SvgIcon name="search" color="#ffffff"/>
  36. </div>
  37. </div>
  38. <div class="gt-tools __box-shadow">
  39. <template v-for="(item, index) in ToolsMapper">
  40. <div class="tools-line" v-if="index > 0"/>
  41. <div class="tools-item __hover" :class="{active: toolsType === item.value, disabled: item.disabled}" @click="item.disabled ? undefined : toolsHandleClick(item)">
  42. {{item.label}}
  43. </div>
  44. </template>
  45. </div>
  46. <div class="gt-tools-component" v-if="toolsType && toolsType !== 'clear' && toolsCom">
  47. <Component :is="toolsCom" :map="map" :mapFunc="mapFunc" v-model:transfer="toolsParams[toolsType]" @cancel="toolsType = ''"/>
  48. </div>
  49. </div>
  50. <div class="gis-content">
  51. <RouterViewCom/>
  52. </div>
  53. <VideoPlayKedaCom v-if="showVideo" v-model:layout="videoLayout" :form="qyParams.sbInfo" @close="showVideo = false"/>
  54. </div>
  55. <div ref="ref_qyDom" class="qy-info" :class="`qy--info-${qyParams.qyInfo.tab}`">
  56. <div class="qy-bg-icon qy-bg-icon-1"/>
  57. <div class="qy-bg-icon qy-bg-icon-2"/>
  58. <div class="qy-bg-icon qy-bg-icon-3"/>
  59. <div class="qy-bg-icon qy-bg-icon-4"/>
  60. <div class="qy-main">
  61. <div class="qy-main-head">
  62. <div class="qy-main-head-tips">【企业】</div>
  63. <div class="qy-main-head-name">{{ qyParams.qyInfo.name }}</div>
  64. <SvgIcon class="__hover" name="close_4" size="14" color="#8FFFFF" @click="onCloseQy"/>
  65. </div>
  66. <div class="qy-main-tab">
  67. <template v-for="item in [
  68. {label: '基本信息', value: '1', disabled: false},
  69. {label: '税收信息', value: '2', disabled: true},
  70. {label: '运输车辆', value: '3', disabled: true},
  71. {label: '能耗消息', value: '4', disabled: true},
  72. {label: '周边设备', value: '5', disabled: false},
  73. ]">
  74. <div class="qy-main-tab-item __hover" :class="{active: item.value === qyParams.qyInfo.tab, disabled: item.disabled}" @click="item.disabled ? undefined : qyParams.qyInfo.tab = item.value">{{item.label}}</div>
  75. </template>
  76. </div>
  77. <div v-if="qyParams.qyInfo.tab === '1'" class="qy-main-content-1">
  78. <div>企业名称:{{qyParams.qyInfo[qyParams.qyInfo.tab].name}}</div>
  79. <div>企业法人:{{qyParams.qyInfo[qyParams.qyInfo.tab].people}}</div>
  80. <div>统一社会信用代码:{{qyParams.qyInfo[qyParams.qyInfo.tab].number}}</div>
  81. <div>经营地址:{{qyParams.qyInfo[qyParams.qyInfo.tab].address}}</div>
  82. </div>
  83. <div v-else-if="qyParams.qyInfo.tab === '5'" class="qy-main-content-5">
  84. <div class="qy-main-content-5-radius">
  85. 周边范围:
  86. <div class="radius-min __hover" @click="qyParams.qyInfo[qyParams.qyInfo.tab].radius > 1 ? (qyParams.qyInfo[qyParams.qyInfo.tab].radius--) : undefined">-</div>
  87. <CusFormColumn
  88. link="number"
  89. label=""
  90. :min="1"
  91. :max="30"
  92. :clearable="false"
  93. v-model:param="qyParams.qyInfo[qyParams.qyInfo.tab].radius"
  94. @blur="handleRangeBlur"/>
  95. <div class="radius-max __hover" @click="qyParams.qyInfo[qyParams.qyInfo.tab].radius < 30 ? (qyParams.qyInfo[qyParams.qyInfo.tab].radius++) : undefined">+</div>
  96. km
  97. <div class="submit __hover" @click="onRadiusSubmit">确定</div>
  98. <div class="reset __hover" @click="onRadiusReset">重置</div>
  99. </div>
  100. <div class="qy-main-content-5-table" :style="`height: ${25 + (qyParams.qyInfo[qyParams.qyInfo.tab].tableData.length > 5 ? 5 * 25 : qyParams.qyInfo[qyParams.qyInfo.tab].tableData.length * 25)}px;`" v-loading="qyParams.qyInfo[qyParams.qyInfo.tab].loading" element-loading-background="rgba(0, 0, 0, 0.3)">
  101. <el-auto-resizer>
  102. <template #default="{ height, width }">
  103. <V2Table
  104. :width="width"
  105. :height="height"
  106. :data="qyParams.qyInfo[qyParams.qyInfo.tab].tableData"
  107. :center="qyParams.qyInfo['5'].center"
  108. />
  109. <!-- <el-table-v2-->
  110. <!-- class="__gis-overlay_table-v2"-->
  111. <!-- :columns="qyParams.qyInfo[qyParams.qyInfo.tab].tableHead"-->
  112. <!-- :data="qyParams.qyInfo[qyParams.qyInfo.tab].tableData"-->
  113. <!-- :width="width"-->
  114. <!-- :height="height"-->
  115. <!-- fixed-->
  116. <!-- :row-height="25"-->
  117. <!-- :header-height="25"-->
  118. <!-- >-->
  119. <!-- <template #empty></template>-->
  120. <!-- </el-table-v2>-->
  121. </template>
  122. </el-auto-resizer>
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. <div ref="ref_sbDom" class="sb-info">
  128. <div class="sb-info-head">
  129. <SvgIcon class="__hover" name="tips" size="14" color="#8FFFFF"/>设备
  130. </div>
  131. <div class="sb-info-close __hover" @click="onCloseSb">
  132. <img src="@/components/easyMap/images/close.png" alt=""/>
  133. </div>
  134. <div class="sb-main">
  135. <div class="sb-item">
  136. <div class="sb-item-label">名称:</div>
  137. <div class="sb-item-value">{{qyParams.sbInfo?.name}}</div>
  138. </div>
  139. <div class="sb-item">
  140. <div class="sb-item-label">状态:</div>
  141. <div class="sb-item-value">{{qyParams.sbInfo?.online === '0' ? '在线' : '离线'}}</div>
  142. </div>
  143. <div class="play-button __hover" @click="showVideo = true">视频调阅</div>
  144. </div>
  145. </div>
  146. </template>
  147. <script lang="ts">
  148. import {
  149. defineComponent,
  150. computed,
  151. onMounted,
  152. ref,
  153. reactive,
  154. watch,
  155. getCurrentInstance,
  156. ComponentInternalInstance,
  157. toRefs,
  158. nextTick,
  159. markRaw
  160. } from 'vue'
  161. import {useStore} from 'vuex'
  162. import {useRouter, useRoute} from 'vue-router'
  163. import {ElMessage, ElMessageBox} from "element-plus";
  164. import RouterViewCom from '@/layout/router-view.vue'
  165. import ElementCom from './tools/element.vue'
  166. import SelectCom from './tools/select.vue'
  167. import AnalysisCom from './tools/analysis.vue'
  168. import ToolCom from './tools/tool.vue'
  169. import PositionCom from './tools/position.vue'
  170. import BaseCom from './tools/base.vue'
  171. import ExampleCom from './tools/example.vue'
  172. import * as source from "ol/source";
  173. import * as layer from "ol/layer";
  174. import * as style from "ol/style";
  175. import * as format from "ol/format";
  176. import QyStyle from '../map-info/style/qy'
  177. import SbStyle from '../map-info/style/sb'
  178. import CommonStyle from '../map-info/style/common'
  179. import * as ol from "ol";
  180. import { v4 } from "uuid";
  181. import * as proj from "ol/proj";
  182. import * as turf from '@turf/turf'
  183. import * as geom from 'ol/geom';
  184. import VideoPlayKedaCom from "@/views/gis/business/common/VideoPlayKeda.vue";
  185. import V2Table from "./v2-table.vue";
  186. import {deviceQuery, enterpriseQuery} from "@/api/modules/enterprise";
  187. import {clearLocationDom} from '@/components/easyMap/func/location'
  188. import {clearMeasureDom} from '@/components/easyMap/func/measure'
  189. export default defineComponent({
  190. name: '',
  191. components: {
  192. RouterViewCom,
  193. ElementCom,
  194. SelectCom,
  195. AnalysisCom,
  196. ToolCom,
  197. PositionCom,
  198. BaseCom,
  199. ExampleCom,
  200. VideoPlayKedaCom,
  201. V2Table
  202. },
  203. props: {},
  204. setup(props, {emit}) {
  205. const store = useStore();
  206. const router = useRouter();
  207. const route = useRoute();
  208. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  209. const state = reactive({
  210. map: <any>null,
  211. mapFunc: <any>null,
  212. searchInput: '',
  213. toolsType: '',
  214. toolsCom: null,
  215. toolsParams: {
  216. element: null,
  217. position: null
  218. },
  219. qyParams: {
  220. layer: <any>null,
  221. source: <any>null,
  222. tempFeature: <any>null,
  223. overlay: <any>null,
  224. qyInfo: <any>{},
  225. analysisLayer: <any>null,
  226. analysisSource: <any>null,
  227. analysisCircle: <any>null,
  228. tempSbFeature: <any>null,
  229. sbOverlay: <any>null,
  230. sbInfo: <any>{
  231. name: '505县道新安村路口1-枪机-0110580',
  232. code: '46044123124125125',
  233. },
  234. },
  235. videoLayout: {
  236. width: 640,
  237. height: 366,
  238. left: 1200,
  239. top: 460
  240. },
  241. showVideo: false
  242. })
  243. const ToolsMapper = [
  244. {label: '图层', value: 'element', com: ElementCom, disabled: true},
  245. {label: '框选', value: 'select', com: SelectCom, disabled: true},
  246. {label: '周边分析', value: 'analysis', com: AnalysisCom, disabled: true},
  247. {label: '清空图层', value: 'clear', com: undefined},
  248. {label: '工具', value: 'tool', com: ToolCom},
  249. {label: '定位', value: 'position', com: PositionCom},
  250. {label: '底图', value: 'base', com: BaseCom},
  251. {label: '图例', value: 'example', com: ExampleCom},
  252. ]
  253. const ref_search = ref()
  254. const mapLoad = (map, func) => {
  255. state.map = map
  256. store.dispatch('gis/LOAD_GIS_MAP', state.map)
  257. state.mapFunc = func
  258. state.map.on('singleclick', e => {
  259. let flag = false
  260. map.forEachFeatureAtPixel(e.pixel, (f) => {
  261. if (!flag && f.get('featureType')) {
  262. flag = true
  263. if (f.get('featureType') === 'qy') { // 企业
  264. // 恢复上一个要素的样式
  265. if (f.getId() !== state.qyParams.tempFeature?.getId()) {
  266. state.qyParams.tempFeature?.get('resetStyle')?.()
  267. state.qyParams.analysisSource?.clear()
  268. // 新的要素
  269. if (f.get('isAnalysis')) {
  270. f.setStyle(f.get('analysisActiveStyle'))
  271. } else {
  272. f.setStyle(f.get('activeStyle'))
  273. }
  274. state.qyParams.qyInfo = JSON.parse(JSON.stringify(f.get('info')))
  275. store.dispatch('gis/LOAD_ACTIVE_QY_ID', f.getId())
  276. // 备份新的要素
  277. state.qyParams.tempFeature = f
  278. }
  279. state.qyParams.overlay.setPosition(f.getGeometry().getCoordinates())
  280. } else if (f.get('featureType') === 'sb') { // 设备
  281. // 恢复上一个要素的样式
  282. if (f.getId() !== state.qyParams.tempSbFeature?.getId()) {
  283. state.qyParams.tempSbFeature?.get('resetStyle')?.()
  284. // 新的要素
  285. if (f.get('isAnalysis')) {
  286. f.setStyle(f.get('analysisActiveStyle'))
  287. } else {
  288. f.setStyle(f.get('activeStyle'))
  289. }
  290. state.qyParams.sbInfo = JSON.parse(JSON.stringify(f.get('info')))
  291. state.qyParams.sbOverlay.setPosition(f.getGeometry().getCoordinates())
  292. // 备份新的要素
  293. state.qyParams.tempSbFeature = f
  294. }
  295. state.qyParams.overlay.setPosition(undefined)
  296. }
  297. }
  298. }, {
  299. hitTolerance: 0,
  300. });
  301. })
  302. initQYLayer()
  303. }
  304. const menuCpt = computed(() => {
  305. return router.options.routes.filter(v => v.name === store.state.gis.menuRootName)[0].children?.filter(v => !v.meta.noMenu)
  306. })
  307. const searchHandleMapSearch = (queryString: string, cb: (arg: any) => void) => {
  308. if (queryString.trim()) {
  309. const arr = [
  310. {name: 123},
  311. {name: 123},
  312. {name: 123},
  313. {name: 123},
  314. {name: 123},
  315. {name: 123},
  316. ]
  317. cb(arr)
  318. } else {
  319. cb([])
  320. }
  321. }
  322. const searchToMapLocation = (val) => {
  323. state.searchInput = val.name
  324. // if (val.source === 'element') {
  325. // state.elementFilter.forEach(l => {
  326. // l.list.forEach(v => {
  327. // if (v.value === val.elementType) {
  328. // v.active = true
  329. // }
  330. // })
  331. // })
  332. // }
  333. // positionSwitchGeom(val.geomType, val.coordinates, true, val.source)
  334. }
  335. const toolsHandleClick = (item) => {
  336. if (item.value === 'clear') {
  337. // 工具-标绘'layerName', 'toolDrawViewsLayer'
  338. state.map.getLayers().getArray().filter(v => v.get('layerName') === 'toolDrawViewsLayer')?.[0]?.getSource()?.clear()
  339. // 工具-测量'layerName', 'measureLayer'
  340. state.map.getLayers().getArray().filter(v => v.get('layerName') === 'measureLayer')?.[0]?.getSource()?.clear()
  341. clearMeasureDom(state.map)
  342. // 定位'layerName', 'positionLayer'
  343. state.map.getLayers().getArray().filter(v => v.get('layerName') === 'positionLayer')?.[0]?.getSource()?.clear()
  344. clearLocationDom()
  345. } else {
  346. state.toolsCom = markRaw(item.com)
  347. state.toolsType = (state.toolsType === item.value ? '' : item.value)
  348. }
  349. }
  350. const ref_qyDom = ref()
  351. const ref_sbDom = ref()
  352. const initQYLayer = () => {
  353. enterpriseQuery({
  354. "pageNumber":1,
  355. "pageSize":200,
  356. // "entName":null,
  357. // "entType":"加工增值"
  358. }).then((res: any) => {
  359. if (res.resp_code === 0 && res.datas?.length > 0) {
  360. // for (let i = 0; i < 105; i++) {
  361. // const obj = {
  362. // name: '企业企业企业企业企业_' + i,
  363. // wkt: `POINT(${that.$util.randomNum(108.738329, 110.912130, 6)} ${that.$util.randomNum(18.154784, 20, 6)})`,
  364. // }
  365. // if (i % 2 === 0) {
  366. // obj.type = 'lgszyjkscsb'
  367. // } else if (i % 2 === 1) {
  368. // obj.type = 'jgzzmgs'
  369. // } else if (i % 2 === 2) {
  370. // obj.type = 'lgsjkyfl'
  371. // }
  372. // arr.push(obj)
  373. // }
  374. const features: any = []
  375. res.datas.forEach(v => {
  376. try {
  377. const feat: any = new format.WKT().readFeature(`POINT(${v.longitude} ${v.latitude})`)
  378. let type = ''
  379. if (v.qykx = '零关税自用进口生产设备') {
  380. type = 'lgszyjkscsb'
  381. } else if (v.qykx = '加工增值免关税') {
  382. type = 'jgzzmgs'
  383. } else if (v.qykx = '零关税进口原辅料') {
  384. type = 'lgsjkyfl'
  385. }
  386. feat.set('defaultStyle', QyStyle.qyStyle(type))
  387. feat.set('activeStyle', [...CommonStyle.activeStyle(), ...QyStyle.qyStyle(type)])
  388. feat.set('analysisStyle', [...CommonStyle.analysisStyle(), ...QyStyle.qyStyle(type)])
  389. feat.set('analysisActiveStyle', [...CommonStyle.activeStyle(), ...CommonStyle.analysisStyle(), ...QyStyle.qyStyle(type)])
  390. feat.set('isAnalysis', false)
  391. feat.set('resetStyle', () => {
  392. if (feat.get('isAnalysis')) {
  393. feat.setStyle(feat.get('analysisStyle'))
  394. } else {
  395. feat.setStyle(feat.get('defaultStyle'))
  396. }
  397. })
  398. const obj = {
  399. coordinates: feat.getGeometry().getCoordinates(),
  400. tab: '1',
  401. name: v.qymc,
  402. 1: {
  403. name: v.qymc,
  404. people: v.lerep,
  405. number: v.uniscid,
  406. address: v.dom
  407. },
  408. 2: {},
  409. 3: {},
  410. 4: {},
  411. 5: {
  412. radius: 1,
  413. center: feat.getGeometry().getCoordinates(),
  414. tableData: [],
  415. loading: false
  416. },
  417. }
  418. feat.set('info', obj)
  419. feat.set('featureType', 'qy')
  420. feat.setStyle(feat.get('defaultStyle'))
  421. feat.setId(v.id)
  422. feat.set('mockClick', () => {
  423. state.qyParams.tempFeature?.get('resetStyle')?.()
  424. state.qyParams.analysisSource?.clear()
  425. // 新的要素
  426. if (feat.get('isAnalysis')) {
  427. feat.setStyle(feat.get('analysisActiveStyle'))
  428. } else {
  429. feat.setStyle(feat.get('activeStyle'))
  430. }
  431. state.qyParams.qyInfo = JSON.parse(JSON.stringify(feat.get('info')))
  432. // 备份新的要素
  433. state.qyParams.tempFeature = feat
  434. state.qyParams.overlay.setPosition(feat.getGeometry().getCoordinates())
  435. store.dispatch('gis/LOAD_ACTIVE_QY_ID', v.id)
  436. })
  437. features.push(feat)
  438. } catch (e) {
  439. console.error('异常企业:', v)
  440. }
  441. })
  442. state.qyParams.source = new source.Vector({
  443. features: features,
  444. wrapX: false
  445. })
  446. state.qyParams.layer = new layer.VectorImage({
  447. source: state.qyParams.source,
  448. zIndex: 10,
  449. layerName: 'qy'
  450. })
  451. state.map.addLayer(state.qyParams.layer)
  452. // 详情
  453. state.qyParams.overlay = new ol.Overlay({
  454. id: v4(),
  455. element: ref_qyDom.value,
  456. autoPan: false,
  457. offset: [0, -60],
  458. positioning: 'bottom-center',
  459. stopEvent: true,
  460. autoPanAnimation: {
  461. duration: 250
  462. }
  463. })
  464. state.map.addOverlay(state.qyParams.overlay)
  465. // 详情
  466. state.qyParams.sbOverlay = new ol.Overlay({
  467. id: v4(),
  468. element: ref_sbDom.value,
  469. autoPan: false,
  470. offset: [0, -60],
  471. positioning: 'bottom-center',
  472. stopEvent: true,
  473. autoPanAnimation: {
  474. duration: 250
  475. }
  476. })
  477. state.map.addOverlay(state.qyParams.sbOverlay)
  478. }
  479. })
  480. }
  481. const onCloseQy = () => {
  482. state.qyParams.overlay.setPosition(undefined)
  483. state.qyParams.tempFeature.get('resetStyle')()
  484. state.qyParams.tempFeature = null
  485. state.qyParams.qyInfo = {}
  486. state.qyParams.analysisSource?.clear()
  487. store.dispatch('gis/LOAD_ACTIVE_QY_ID', null)
  488. }
  489. const onCloseSb = () => {
  490. state.qyParams.sbOverlay.setPosition(undefined)
  491. state.qyParams.tempSbFeature.get('resetStyle')()
  492. state.qyParams.tempSbFeature = null
  493. }
  494. const handleRangeBlur = () => {
  495. if (!state.qyParams.qyInfo['5'].radius) {
  496. state.qyParams.qyInfo['5'].radius = 10
  497. }
  498. setCircle()
  499. }
  500. const setCircle = () => {
  501. const transformProjection = (arr, EPSG, EPSG2) => {
  502. try {
  503. if (EPSG2 && EPSG) {
  504. if (arr && arr.length === 4) {
  505. return proj.transformExtent(arr, EPSG, EPSG2);
  506. } else {
  507. return proj.transform(arr, EPSG, EPSG2);
  508. }
  509. }
  510. return undefined;
  511. } catch (e) {
  512. console.error(e);
  513. }
  514. }
  515. state.qyParams.analysisCircle.getGeometry().setRadius(transformProjection([state.qyParams.qyInfo['5'].radius * 1000, 0], 'EPSG:3857', 'EPSG:4326')[0] - transformProjection([0, 0], 'EPSG:3857', 'EPSG:4326')[0],'XY')
  516. }
  517. const onRadiusSubmit = () => {
  518. if (!state.qyParams.analysisLayer) {
  519. state.qyParams.analysisSource = new source.Vector()
  520. state.qyParams.analysisLayer = new layer.Vector({
  521. zIndex: 9,
  522. source: state.qyParams.analysisSource,
  523. style: [
  524. new style.Style({
  525. stroke: new style.Stroke({
  526. color: '#2860F1',
  527. width: 2,
  528. lineDash: [10, 10]
  529. }),
  530. fill: new style.Fill({
  531. color: 'rgba(20, 129, 241, 0.3)',
  532. }),
  533. })
  534. ]
  535. });
  536. state.qyParams.analysisCircle = new ol.Feature({
  537. geometry: new geom.Circle(state.qyParams.qyInfo.coordinates, 0),
  538. })
  539. state.qyParams.analysisSource.addFeature(state.qyParams.analysisCircle)
  540. setCircle()
  541. state.map.addLayer(state.qyParams.analysisLayer)
  542. }
  543. state.qyParams.analysisSource.clear()
  544. state.qyParams.analysisSource.addFeature(state.qyParams.analysisCircle)
  545. state.qyParams.qyInfo['5'].tableData = []
  546. state.qyParams.qyInfo['5'].loading = true
  547. that.$api.deviceQuery({
  548. lon: state.qyParams.qyInfo.coordinates[0],
  549. lat: state.qyParams.qyInfo.coordinates[1],
  550. radius: 0.5
  551. }).then((res: any) => {
  552. // console.log(res)
  553. // for (let i = 0; i < 500; i++) {
  554. // state.qyParams.qyInfo['5'].tableData.push({
  555. // name: '505县道新安村路口1-枪机-0110580_' + i,
  556. // code: '46044123124125125',
  557. // status: i % 3 === 0 ? '1' : '0',
  558. // typeName: '公安类',
  559. // type: i % 3 === 0 ? 'galsb' : (i % 3 === 1 ? 'shlsb' : 'mylsb'),
  560. // wkt: `POINT(${that.$util.randomNum(108.738329, 110.912130, 6)} ${that.$util.randomNum(18.154784, 20, 6)})`
  561. // })
  562. // }
  563. if (res.resp_code === 0 && res.datas?.length > 0) {
  564. console.log(res.datas?.length)
  565. const features: any = []
  566. res.datas?.forEach(v => {
  567. try {
  568. const feat: any = new format.WKT().readFeature(`POINT(${v.longitude} ${v.latitude})`)
  569. let type = ''
  570. if (v.type = '公安类') {
  571. type = 'galsb'
  572. } else if (v.type = '社会类') {
  573. type = 'shlsb'
  574. } else if (v.type = '民用类') {
  575. type = 'mylsb'
  576. }
  577. feat.set('defaultStyle', SbStyle.sbStyle(type))
  578. feat.set('activeStyle', [...CommonStyle.activeStyle(), ...SbStyle.sbStyle(type)])
  579. feat.set('analysisStyle', [...CommonStyle.analysisStyle(), ...SbStyle.sbStyle(type)])
  580. feat.set('analysisActiveStyle', [...CommonStyle.activeStyle(), ...CommonStyle.analysisStyle(), ...SbStyle.sbStyle(type)])
  581. feat.set('isAnalysis', true)
  582. feat.set('resetStyle', () => {
  583. if (feat.get('isAnalysis')) {
  584. feat.setStyle(feat.get('analysisStyle'))
  585. } else {
  586. feat.setStyle(feat.get('defaultStyle'))
  587. }
  588. })
  589. feat.setStyle(feat.get('analysisStyle'))
  590. feat.set('featureType', 'sb')
  591. feat.set('info', v)
  592. feat.setId(v.deviceid)
  593. features.push(feat)
  594. state.qyParams.qyInfo['5'].tableData.push(v)
  595. } catch (e) {
  596. console.error('异常设备', v)
  597. }
  598. })
  599. state.qyParams.analysisSource.addFeatures(features)
  600. }
  601. state.qyParams.qyInfo['5'].loading = false
  602. }).catch(() => {
  603. state.qyParams.qyInfo['5'].loading = true
  604. })
  605. }
  606. const onRadiusReset = () => {
  607. state.qyParams.qyInfo['5'].radius = 10
  608. onRadiusSubmit()
  609. }
  610. onMounted(() => {
  611. })
  612. return {
  613. ...toRefs(state),
  614. mapLoad,
  615. ToolsMapper,
  616. ref_search,
  617. menuCpt,
  618. searchHandleMapSearch,
  619. searchToMapLocation,
  620. toolsHandleClick,
  621. ref_qyDom,
  622. onCloseQy,
  623. onCloseSb,
  624. handleRangeBlur,
  625. setCircle,
  626. onRadiusSubmit,
  627. onRadiusReset,
  628. ref_sbDom
  629. }
  630. },
  631. })
  632. </script>
  633. <style scoped lang="scss">
  634. .gis-layout {
  635. width: 100%;
  636. height: 100vh;
  637. position: absolute;
  638. top: 0;
  639. left: 0;
  640. z-index: 2;
  641. display: flex;
  642. align-items: center;
  643. justify-content: center;
  644. .map {
  645. z-index: 1;
  646. }
  647. .gis-menu {
  648. $diff: 14px;
  649. $menuBottom: 16px;
  650. position: absolute;
  651. z-index: 2;
  652. bottom: $menuBottom;
  653. display: flex;
  654. justify-content: center;
  655. align-items: center;
  656. &:before, &:after {
  657. content: '';
  658. background-image: url("@/assets/images/gis-layout/gis-layout-menu_side.png");
  659. width: 246px;
  660. height: 39px;
  661. position: absolute;
  662. bottom: -$menuBottom;
  663. }
  664. &:before {
  665. left: calc((#{$diff} + 246px) * -1);
  666. }
  667. &:after {
  668. right: calc((#{$diff} + 246px) * -1);
  669. transform: rotateY(180deg);
  670. }
  671. .gis-menu-bottom {
  672. position: absolute;
  673. height: 9px;
  674. width: calc(100% + 10px + #{$diff} * 2);
  675. bottom: -$menuBottom;
  676. }
  677. .gis-menu-item {
  678. width: 95px;
  679. height: 36px;
  680. background-image: url("@/assets/images/gis-layout/gis-layout-menu_item-min.png");
  681. background-size: 100% 100%;
  682. background-repeat: no-repeat;
  683. display: flex;
  684. align-items: center;
  685. justify-content: center;
  686. font-size: 18px;
  687. font-family: YouSheBiaoTiHei;
  688. font-weight: 400;
  689. color: #60AEFF;
  690. &:not(&:last-child) {
  691. margin-right: 4px;
  692. }
  693. &.active {
  694. color: #FFFFFF;
  695. background-image: url("@/assets/images/gis-layout/gis-layout-menu_item-min_active.png");
  696. }
  697. &.max {
  698. width: 125px;
  699. background-image: url("@/assets/images/gis-layout/gis-layout-menu_item-max.png");
  700. &.active {
  701. background-image: url("@/assets/images/gis-layout/gis-layout-menu_item-max_active.png");
  702. }
  703. }
  704. }
  705. }
  706. .gis-tools {
  707. position: absolute;
  708. z-index: 3;
  709. top: 10px;
  710. right: 10px;
  711. width: 404px;
  712. >div {
  713. box-sizing: border-box;
  714. }
  715. .gt-search {
  716. height: 38px;
  717. width: 100%;
  718. display: flex;
  719. align-items: center;
  720. .search-icon {
  721. width: 54px;
  722. height: 100%;
  723. background-color: #3e8ef7;
  724. display: flex;
  725. align-items: center;
  726. justify-content: center;
  727. }
  728. :deep(.el-autocomplete) {
  729. flex: 1;
  730. height: 100%;
  731. .el-input {
  732. width: 100%;
  733. height: 100%;
  734. .el-input__wrapper {
  735. border-radius: 0;
  736. }
  737. }
  738. }
  739. :deep(.el-autocomplete__popper) {
  740. opacity: 0.9;
  741. background-image: linear-gradient(45deg,transparent 10px,#101D69 10px), linear-gradient(-135deg,transparent 10px,#101D69 10px);
  742. border: none;
  743. .el-popper__arrow::before {
  744. background: #101D69;
  745. border-color: #101D69;
  746. }
  747. .el-autocomplete-suggestion {
  748. .el-scrollbar {
  749. .el-autocomplete-suggestion__wrap {
  750. .el-scrollbar__view {
  751. >li {
  752. &:hover {
  753. background-color: rgba(59,84,172,0.5);
  754. }
  755. .search-item {
  756. display: flex;
  757. align-items: center;
  758. justify-content: flex-start;
  759. >img {
  760. margin-right: 6px;
  761. width: 16px;
  762. height: 16px;
  763. }
  764. .name {
  765. color: #ffffff;
  766. }
  767. }
  768. }
  769. }
  770. }
  771. }
  772. }
  773. }
  774. }
  775. .gt-tools {
  776. width: 100%;
  777. height: 38px;
  778. margin-top: 2px;
  779. background-color: #FFFFFF;
  780. border: 1px solid #C7CFDE;
  781. display: flex;
  782. align-items: center;
  783. justify-content: space-around;
  784. padding: 0 8px;
  785. .tools-item {
  786. font-size: 14px;
  787. font-family: Microsoft YaHei;
  788. font-weight: 400;
  789. color: #AEAEAE;
  790. &.active {
  791. color: #1174DB;
  792. font-weight: bold;
  793. }
  794. &.disabled {
  795. opacity: 0.5;
  796. cursor: not-allowed;
  797. }
  798. }
  799. .tools-line {
  800. width: 1px;
  801. height: 16px;
  802. background: linear-gradient(0deg, rgba(174,174,174,0) 0%, rgba(213,213,213,0.99) 50%, rgba(174,174,174,0) 100%);
  803. }
  804. }
  805. .gt-tools-component {
  806. width: 100%;
  807. margin-top: 2px;
  808. }
  809. }
  810. .gis-content {
  811. z-index: 4;
  812. }
  813. .qy-info {
  814. $bgColor: #2860CE;
  815. $footH: 10px;
  816. min-width: 315px;
  817. min-height: 168px - $footH;
  818. background-color: $bgColor;
  819. position: relative;
  820. display: flex;
  821. justify-content: center;
  822. &:after {
  823. content: '';
  824. position: absolute;
  825. bottom: -$footH;
  826. border-top: $footH solid $bgColor;
  827. border-left: $footH solid transparent;
  828. border-right: $footH solid transparent;
  829. }
  830. .qy-bg-icon {
  831. width: 16px;
  832. height: 16px;
  833. background-image: url("@/views/gis/map-info/qy-dom-icon1.png");
  834. background-repeat: no-repeat;
  835. background-size: 100% 100%;
  836. position: absolute;
  837. z-index: 1;
  838. &.qy-bg-icon-1 {
  839. left: 0;
  840. top: 0;
  841. }
  842. &.qy-bg-icon-2 {
  843. right: 0;
  844. top: 0;
  845. transform: rotate(90deg);
  846. }
  847. &.qy-bg-icon-3 {
  848. right: 0;
  849. bottom: 0;
  850. transform: rotate(180deg);
  851. }
  852. &.qy-bg-icon-4 {
  853. left: 0;
  854. bottom: 0;
  855. transform: rotate(270deg);
  856. }
  857. }
  858. .qy-main {
  859. width: 100%;
  860. height: auto;
  861. z-index: 2;
  862. padding: 12px;
  863. .qy-main-head {
  864. display: flex;
  865. align-items: center;
  866. position: relative;
  867. &:after {
  868. content: '';
  869. position: absolute;
  870. width: 100%;
  871. height: 4px;
  872. bottom: -9px;
  873. background-image: url("@/views/gis/map-info/qy-info-icon2.png");
  874. background-repeat: no-repeat;
  875. }
  876. .qy-main-head-tips {
  877. font-size: 10px;
  878. font-family: Microsoft YaHei;
  879. font-weight: bold;
  880. color: #8FFFFF;
  881. }
  882. .qy-main-head-name {
  883. font-size: 14px;
  884. font-family: Microsoft YaHei;
  885. font-weight: bold;
  886. color: #FFFFFF;
  887. }
  888. .svg-icon {
  889. margin-left: auto;
  890. }
  891. }
  892. .qy-main-tab {
  893. margin: 20px 0 10px 0;
  894. display: flex;
  895. align-items: center;
  896. .qy-main-tab-item {
  897. font-size: 12px;
  898. font-family: Microsoft YaHei;
  899. font-weight: 400;
  900. color: #CEE6FF;
  901. height: 16px;
  902. display: flex;
  903. align-items: center;
  904. justify-content: center;
  905. padding: 0 4px;
  906. border-radius: 2px;
  907. background-color: rgba(255, 255, 255, 0.2);
  908. &.active {
  909. background-color: #1280F1;
  910. color: #61FFFF;
  911. }
  912. &.disabled {
  913. cursor: not-allowed;
  914. opacity: 0.7;
  915. }
  916. &:not(:last-child) {
  917. margin-right: 2px;
  918. }
  919. }
  920. }
  921. .qy-main-content-1 {
  922. font-size: 12px;
  923. font-family: Microsoft YaHei;
  924. font-weight: 400;
  925. color: #FFFFFF;
  926. >div {
  927. line-height: 18px;
  928. }
  929. }
  930. .qy-main-content-5 {
  931. .qy-main-content-5-radius {
  932. display: flex;
  933. align-items: center;
  934. font-size: 12px;
  935. font-family: Microsoft YaHei;
  936. font-weight: 400;
  937. color: #FFFFFF;
  938. .radius-min, .radius-max {
  939. margin: 0 3px;
  940. &:hover {
  941. color: #409EFF;
  942. }
  943. }
  944. :deep(.cus-form-column) {
  945. max-width: unset;
  946. width: 44px;
  947. flex: unset;
  948. .el-form-item {
  949. margin: 0;
  950. .el-form-item__content {
  951. height: 18px;
  952. .el-input {
  953. .el-input__wrapper {
  954. padding: 0;
  955. border-radius: 5px;
  956. background-color: transparent;
  957. .el-input__inner {
  958. color: #FFFFFF;
  959. background-color: transparent;
  960. height: 100%;
  961. text-align: center;
  962. border: 1px solid #ffffff;
  963. border-radius: 5px;
  964. &::placeholder {
  965. font-size: 12px;
  966. font-family: Microsoft YaHei;
  967. }
  968. }
  969. }
  970. }
  971. }
  972. }
  973. }
  974. .submit {
  975. display: flex;
  976. align-items: center;
  977. justify-content: center;
  978. width: 36px;
  979. height: 18px;
  980. background: #8FFFFF;
  981. border-radius: 4px;
  982. font-size: 12px;
  983. font-family: Microsoft YaHei;
  984. font-weight: 400;
  985. color: #1174DB;
  986. margin-left: 10px;
  987. }
  988. .reset {
  989. display: flex;
  990. align-items: center;
  991. justify-content: center;
  992. width: 36px;
  993. height: 18px;
  994. border: 1px solid #8FFFFF;
  995. border-radius: 4px;
  996. font-size: 12px;
  997. font-family: Microsoft YaHei;
  998. font-weight: 400;
  999. color: #8FFFFF;
  1000. margin-left: 8px;
  1001. }
  1002. }
  1003. .qy-main-content-5-table {
  1004. margin-top: 10px;
  1005. width: 440px;
  1006. :deep(.__gis-overlay_table-v2) {
  1007. .el-table-v2__header-cell{
  1008. justify-content: center;
  1009. &:nth-child(2) {
  1010. color: #00C6FC;
  1011. }
  1012. }
  1013. .el-table-v2__header-cell, .el-table-v2__row-cell {
  1014. width: 60px !important;
  1015. $w1: 60px;
  1016. $w3: 60px;
  1017. $w4: 60px;
  1018. $w5: 60px;
  1019. &:nth-child(1) {
  1020. width: $w1 !important;
  1021. }
  1022. &:nth-child(2) {
  1023. width: calc(100% - #{$w1} - #{$w3} - #{$w4} - #{$w5} - 6px) !important;
  1024. }
  1025. &:nth-child(3) {
  1026. width: $w3 !important;
  1027. }
  1028. &:nth-child(4) {
  1029. width: $w4 !important;
  1030. }
  1031. &:nth-child(5) {
  1032. width: $w5 !important;
  1033. }
  1034. }
  1035. }
  1036. }
  1037. }
  1038. }
  1039. }
  1040. .sb-info {
  1041. $footH: 10px;
  1042. width: 220px;
  1043. background: linear-gradient(180deg, #3874C9 0%, #0043C4 100%);
  1044. border-radius: 0px 4px 4px 4px;
  1045. position: relative;
  1046. display: flex;
  1047. justify-content: center;
  1048. &:after {
  1049. content: '';
  1050. position: absolute;
  1051. bottom: -$footH;
  1052. border-top: $footH solid #0043C4;
  1053. border-left: $footH solid transparent;
  1054. border-right: $footH solid transparent;
  1055. }
  1056. .sb-info-head {
  1057. min-width: 68px;
  1058. height: 18px;
  1059. position: absolute;
  1060. top: -18px;
  1061. left: 0;
  1062. font-size: 12px;
  1063. font-family: PingFang SC;
  1064. font-weight: 500;
  1065. color: #FFFFFF;
  1066. display: flex;
  1067. align-items: center;
  1068. line-height: 8px;
  1069. &:before {
  1070. z-index: -1;
  1071. content: '';
  1072. position: absolute;
  1073. width: 100%;
  1074. height: 100%;
  1075. background: linear-gradient(180deg, #3874C9 0%, #0043C4 100%);
  1076. border-radius: 2px 2px 0 0;/* 设置圆角 */
  1077. transform: perspective(20px)rotateX(4deg);
  1078. /* 镜头距离元素表面的位置为8px,x轴为1.1倍y轴为1.3倍,绕x轴旋转5度 */
  1079. transform-origin: bottom left;
  1080. /* bottom left = left bottom = 0 100% 中心点偏移量*/
  1081. }
  1082. .svg-icon {
  1083. margin: 0 4px 0 6px;
  1084. }
  1085. }
  1086. .sb-info-close {
  1087. position: absolute;
  1088. right: 0;
  1089. top: -16px;
  1090. }
  1091. .sb-main {
  1092. width: 100%;
  1093. height: auto;
  1094. padding: 10px;
  1095. .sb-item {
  1096. display: flex;
  1097. .sb-item-label {
  1098. width: 42px;
  1099. font-size: 14px;
  1100. font-family: PingFang SC;
  1101. font-weight: 600;
  1102. color: #08FFFF;
  1103. line-height: 20px;
  1104. }
  1105. .sb-item-value {
  1106. flex: 1;
  1107. font-size: 14px;
  1108. font-family: PingFang SC;
  1109. font-weight: 400;
  1110. color: #FFFFFF;
  1111. line-height: 20px;
  1112. }
  1113. }
  1114. .play-button {
  1115. width: 76px;
  1116. height: 24px;
  1117. background: #1280F1;
  1118. border-radius: 2px;
  1119. border: 1px solid #4BA0FF;
  1120. display: flex;
  1121. align-items: center;
  1122. justify-content: center;
  1123. font-size: 14px;
  1124. font-family: PingFang SC;
  1125. font-weight: 400;
  1126. color: #FFFFFF;
  1127. margin-left: calc((100% - 76px) / 2);
  1128. margin-top: 10px;
  1129. }
  1130. }
  1131. }
  1132. }
  1133. </style>