123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137 |
- <!--信息中心-->
- <template>
- <div class="visual-con">
- <!--头部-->
- <vheader></vheader>
- <!--主体-->
- <div class="visual-body">
- <!-- 左侧 -->
- <div
- class="leftbar"
- :class="indentleft"
- ref="left"
- >
- <div class="forthis" style="width:12rem !important;height: 80vh;overflow-y: hidden;">
- <dv-border-box-13
- backgroundColor="rgba(12, 19, 38, .90)"
- style="padding-bottom: 1rem;height: 80vh"
- >
- <img
- src="../assets/images/integrated/light.png"
- style="width: 100%; margin-top: 0.4rem"
- />
- <div class="sj-search" v-show="showSearch">
- <el-input
- v-model="searchName"
- placeholder="请输入名称"
- @blur="searchByName()"
- clearable
- size="small"
- prefix-icon="el-icon-search"
- />
- </div>
- <div class="i-list-con" style="height: 71vh">
- <div class="d-l-con-icon">
- <div
- class="icon-con"
- :class="{ on: iconCurrentIndex == item.resourceTable }"
- v-for="(item, index) in resourcesList"
- v-on:click="indentleftSetMarkers(item.type, searchName)"
- >
- <!--v-on:click="indentleftSetMarkers(item.resourceTable)">-->
- <div
- class="iconfont icon icon-normal"
- :class="item.icon"
- :style="'background:' + item.bg"
- ></div>
- <div class="icon-text">
- <h6>{{ item.num }}</h6>
- <!--<h6>{{ item.count }}</h6>-->
- <h5>{{ item.name }}</h5>
- <!--<h5>{{ item.resourceName }}</h5>-->
- </div>
- </div>
- </div>
- </div>
- </dv-border-box-13>
- </div>
- </div>
- <!-- 地图 -->
- <supermap
- ref="supermap"
- style="width: 100%; height: 100vh"
- @sewageOutletClick="sewageOutletClick"
- ></supermap>
- <!-- <button @click="showEventInfo1" style="position: absolute; right: 50%;top: 45%;z-index: 1000;">弹层事件演示用按钮-->
- <!-- </button>-->
- <vBottomMenu ref="bottomMenu"></vBottomMenu>
- <!-- <el-tooltip :content="indentText" placement="top" :disabled="indentdisabled">-->
- <!-- <div class="mascot" ref="mascot" :class="indentStyle" @click="indent"><img-->
- <!-- src="@/assets/images/mascot.png"/>-->
- <!-- </div>-->
- <!-- </el-tooltip>-->
- </div>
- <eventLocation ref="eventLocation"></eventLocation>
- <TVWall ref="TVWall"></TVWall>
- </div>
- </template>
- <script>
- import { getResource, getResourcePoint } from "@/api/datacenter";
- import supermap from "@/components/supermap-2.5d"; //超图
- import vheader from "@/components/v-header.vue"; //一体化共用头部
- import vBottomMenu from "@/components/vBottomMenu.vue"; //一体化公共底部菜单
- import eventLocation from "@/components/eventLocation.vue"; //事件定位弹窗
- import TVWall from "@/components/TVWall.vue"; //电视墙弹窗
- import { getIconBg } from "@/api/components/sookaMapIcon"; //资源底色控制文件
- // import echarts from 'echarts'
- let echarts = require("echarts");
- import {getUserProfile} from "@/api/system/user";
- export default {
- components: {
- supermap,
- vheader,
- vBottomMenu,
- eventLocation,
- TVWall,
- },
- created() {
- /** ----------------------------------底部按钮公用组件开始------------------------------------- */
- window.showDialog = this.showDialog;
- window.choseLayerSwitching = this.choseLayerSwitching;
- window.choseLayerSwitchingList = this.choseLayerSwitchingList;
- /** ----------------------------------底部按钮公用组件结束------------------------------------- */
- },
- mounted() {
- // 初始化地图数据
- this.getSuperMapUrl();
- setTimeout(() => {
- this.getResource();
- }, 2000)
- this.bottomMenuList(); //获取底部公共组件消息和任务
- },
- data() {
- return {
- // 搜索框
- showSearch: false,
- // 搜索名称
- searchName: undefined,
- // 搜索类型
- searchType: undefined,
- iconCurrentIndex: "",
- listCurrentIndex: "",
- markersList: [],
- iframeBoo: true,
- open: false,
- iframeVue: null,
- activeName: "info",
- radio: "1",
- //类型
- resourceTable: "",
- //左侧资源
- resourcesList: [],
- //右侧资源
- deptGroupList: [],
- source: [],
- //左右缩进
- indentStyle: "",
- indentleft: "",
- indentright: "",
- indentText: "收起左右栏",
- indentdisabled: false,
- };
- },
- methods: {
- //初始化地图数据
- getSuperMapUrl(){
- getUserProfile().then(response => {
- let mapDeptId=response.mapDeptId
- let num = 0;
- if (mapDeptId == "365") {
- num = 0;
- } else if (mapDeptId == "369") {
- num = 1;
- } else if (mapDeptId == "371") {
- num = 2;
- } else if (mapDeptId == "373") {
- num = 3;
- } else if (mapDeptId == "372") {
- num = 4;
- } else if (mapDeptId == "370") {
- num = 5;
- }
- this.$refs.supermap.removeAllviewer(num, -1);
- });
- },
- // 根据名称筛选资源点位
- searchByName() {
- this.$modal.msgSuccess("正在查询,请稍后...");
- this.indentleftSetMarkers(this.searchType, this.searchName);
- },
- /** ----------------------------------底部按钮公用组件开始------------------------------------- */
- bottomMenuList() {
- this.$refs.bottomMenu.selectTaskList(); //获取任务列表
- this.$refs.bottomMenu.selectMessageList(); //获取消息列表
- },
- showDialog(click) {
- if (click == "eventLocation") {
- this.$refs.eventLocation.showEventLocation();
- this.$refs.bottomMenu.showMeasure = false;
- this.$refs.bottomMenu.showChild = false;
- this.$refs.bottomMenu.showBanChild = false;
- this.$refs.bottomMenu.showChangChild = false;
- } else if (click == "editableLayers") {
- this.$refs.bottomMenu.showChild = false;
- this.$refs.bottomMenu.showBanChild = false;
- this.$refs.bottomMenu.showChangChild = false;
- if (!this.$refs.bottomMenu.showMeasure) {
- this.$refs.bottomMenu.showMeasure = true;
- } else {
- this.$refs.bottomMenu.showMeasure = false;
- }
- } else if (click == "layerSwitching") {
- this.$refs.bottomMenu.showMeasure = false;
- this.$refs.bottomMenu.showBanChild = false;
- this.$refs.bottomMenu.showChangChild = false;
- if (!this.$refs.bottomMenu.showChild) {
- this.$refs.bottomMenu.showChild = true;
- } else {
- this.$refs.bottomMenu.showChild = false;
- }
- } else if (click == "TVWall") {
- this.$refs.TVWall.showTVWall();
- this.$refs.bottomMenu.showMeasure = false;
- this.$refs.bottomMenu.showChild = false;
- this.$refs.bottomMenu.showBanChild = false;
- this.$refs.bottomMenu.showChangChild = false;
- } else if (click == "forestban") {
- this.$refs.bottomMenu.showMeasure = false;
- this.$refs.bottomMenu.showChild = false;
- this.$refs.bottomMenu.showChangChild = false;
- if (!this.$refs.bottomMenu.showBanChild) {
- this.$refs.bottomMenu.showBanChild = true;
- } else {
- this.$refs.bottomMenu.showBanChild = false;
- }
- } else if (click == "forestchang") {
- this.$refs.bottomMenu.showMeasure = false;
- this.$refs.bottomMenu.showBanChild = false;
- this.$refs.bottomMenu.showChild = false;
- if (!this.$refs.bottomMenu.showChangChild) {
- this.$refs.bottomMenu.showChangChild = true;
- } else {
- this.$refs.bottomMenu.showChangChild = false;
- }
- }
- },
- //选择图层
- choseLayerSwitching(url, isClear) {
- this.$refs.supermap.layerSwitching(url, isClear);
- },
- //选择图层(传递数组)
- choseLayerSwitchingList(urlList) {
- this.$refs.supermap.layerSwitchingList(urlList);
- },
- /** ----------------------------------底部按钮公用组件结束------------------------------------- */
- //吉祥物收起左右框
- indent() {
- let list = document.getElementsByClassName("el-tooltip__popper");
- list[list.length - 1].style.display = "none";
- if (this.indentStyle == "") {
- this.indentStyle = "indent-style";
- this.indentleft = "indent-left";
- this.indentright = "indent-right";
- this.indentText = "展开左右栏";
- } else if (this.indentText == "展开左右栏") {
- this.indentStyle = "";
- this.indentleft = "";
- this.indentright = "";
- this.indentText = "收起左右栏";
- }
- },
- // 弹层方法
- // 弹层方法
- showEventInfo1() {
- this.eventInfoVisible1 = true;
- },
- showEventInfo2() {
- this.eventInfoVisible2 = true;
- },
- getResource() {
- let that = this;
- //获取左侧菜单列表
- getResource().then((res) => {
- console.log("res.data=", res.data);
- that.resourcesList = res.data;
- //截取data.resourceTable字段中“_”分隔符最后一个作为关键字,重新拼接成前端需要的图标:class,格式sj-icon-xxxx,将其set回原数组
- res.data.forEach(function (data, index) {
- // that.$set(that.resourcesList[index], 'icon', 'sj' + '-' + 'icon' + '-' + data.resourceTable.split('_').slice(-1))
- let icon =
- "sj" +
- "-" +
- "icon" +
- "-" +
- data.type.replaceAll("_", "-").replaceAll("@", "-");
- console.log("icon_" + (index + 1) + "=", icon);
- that.$set(that.resourcesList[index], "icon", icon);
- that.$set(that.resourcesList[index], "bg", getIconBg(icon));
- // if(index < 5){
- // // that.fireControlViewPoint(data.type, 'undefined');
- // that.indentleftSetMarkers(data.type, '所有');
- // }
- });
- //数据自动落点开始
- let maxCount = 100; //落点数超过这个数的资源不落点
- let list = res.data;
- let counts = [];
- let points = [];
- let types = [];
- for (let i = 0; i < list.length; i++) {
- //获取符合要求的类型及数量
- if (list[i].num <= maxCount) {
- counts.push(list[i].num);
- points.push({
- type: list[i].type,
- count: list[i].num,
- });
- }
- }
- for (let i = 0; i < points.length; i++) {
- if (points[i].count == Math.max(...counts)) {
- types.push(points[i].type);
- let countsTemp = [];
- for (let j = 0; j < counts.length; j++) {
- if (counts[j] != Math.max(...counts)) {
- countsTemp.push(counts[j]);
- }
- }
- counts = countsTemp;
- break;
- }
- }
- for (let i = 0; i < points.length; i++) {
- if (points[i].count == Math.max(...counts)) {
- types.push(points[i].type);
- break;
- }
- }
- for (let i = 0; i < types.length; i++) {
- that.indentleftSetMarkers(types[i], "所有");
- }
- //数据自动落点结束
- });
- },
- indentleftSetMarkers(resourceTable, name) {
- // 搜索框
- // if(name == 'undefined' && this.showSearch == false){
- // if(name == '所有' && this.showSearch == false){
- if (name == "所有") {
- name = undefined;
- } else {
- this.showSearch = true;
- }
- // 搜索类型
- this.searchType = resourceTable;
- this.iconCurrentIndex = resourceTable;
- let that = this;
- that.resourceTable = resourceTable;
- that.markersList = [];
- that.source = [];
- //点击左侧地图落点
- getResourcePoint(resourceTable, name).then((res) => {
- that.deptGroupList = res.data.deptGroupList;
- if (
- res.data.deptGroupList != null &&
- res.data.deptGroupList.length > 0
- ) {
- for (let i = 0; i < res.data.deptGroupList.length; i++) {
- let aa = [
- res.data.deptGroupList[i].deptName,
- res.data.deptGroupList[i].count,
- ];
- that.source.push(aa);
- }
- }
- if (res.data.resourceList != null && res.data.resourceList.length > 0) {
- for (let i = 0; i < res.data.resourceList.length; i++) {
- let markersMap = {
- lng: 124.59,
- lat: 43.02,
- icon: "marker",
- bindPopupHtml: "",
- click: "",
- keepBindPopup: false,
- isAggregation: false,
- };
- console.log("res.data.resourceList[i]=", res.data.resourceList[i]);
- that.markersList.push(
- this.getMarkersMap(
- resourceTable,
- markersMap,
- res.data.resourceList[i]
- )
- );
- // that.markersList.push(markersMap)
- }
- }
- that.$refs.supermap.clearM();
- that.$refs.supermap.setMarkers(that.markersList);
- });
- },
- sewageOutletClick(data) {
- console.log(data);
- const params = Object.assign({});
- params.longitude = data.longitude;
- params.latitude = data.latitude;
- const treeLabels = [
- {
- id: null,
- labelCode: "999",
- labelName: "电视墙",
- cameraType: null,
- parentLabelCode: "",
- },
- ];
- const labelChannels = [];
- for (let i in data.cameraList) {
- treeLabels.push({
- id: null,
- labelCode: data.cameraList[i].cameraCode,
- labelName: data.cameraList[i].cameraName,
- cameraType: "1",
- parentLabelCode: "999",
- });
- labelChannels.push({
- labelCode: data.cameraList[i].cameraCode,
- channelDates: [
- {
- channelCode: data.cameraList[i].cameraCode,
- channelName: data.cameraList[i].cameraName,
- channelSn: null,
- cameraType: "1",
- online: "1",
- cameraCode: "1",
- },
- ],
- });
- }
- const dianshiqiang = [
- {
- switchTab: "2",
- treeLabels: treeLabels,
- labelChannels: labelChannels,
- },
- ];
- if (data.cameraList.length > 0) {
- this.$refs.TVWall.showTVWall1(
- data.longitude,
- data.latitude,
- dianshiqiang
- );
- }
- },
- getMarkersMap(resourceTable, markersMap, item) {
- markersMap.click = "sewageOutletClick";
- markersMap.parameter = item;
- if (resourceTable == "centerdata_t_firecontrol_basic_linkage_force") {
- //基本联动力量
- markersMap.icon =
- "sj-icon-map-centerdata-t-firecontrol-basic-linkage-force";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>单位名称:" +
- (item.company ? item.company : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "</div>";
- } else if (resourceTable == "centerdata_t_firecontrol_fire_force") {
- //消防力量
- markersMap.icon = "sj-icon-map-centerdata-t-firecontrol-fire-force";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>地址:" +
- (item.address ? item.address : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.principal ? item.principal : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.contact ? item.contact : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (resourceTable == "centerdata_t_emergency_warehouse") {
- //应急仓库
- markersMap.icon = "sj-icon-map-centerdata-t-emergency-warehouse";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>仓库名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>所属部门:" +
- (item.dept_name ? item.dept_name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- (item.phone
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- item.phone +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>"
- : "");
- } else if (resourceTable == "centerdata_t_emergency_team") {
- //应急队伍
- markersMap.icon = "sj-icon-map-centerdata-t-emergency-team";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>队伍名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.charger ? item.charger : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- (item.emergency_phone
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- item.emergency_phone +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>"
- : "") +
- (item.equipment
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>核心装备及数量:" +
- item.equipment +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>"
- : "") +
- "</div>";
- } else if (resourceTable == "centerdata_t_forest_fireteam") {
- //防火队
- markersMap.icon = "sj-icon-map-centerdata-t-forest-fireteam";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>队伍名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系人:" +
- (item.fireteam_person ? item.fireteam_person : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- (item.fireteam_tel
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- item.fireteam_tel +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>"
- : "") +
- (item.equipment
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>设备数量:" +
- item.equipment +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>"
- : "") +
- "</div>";
- } else if (resourceTable == "centerdata_t_emergency_enterprise") {
- //应急企业
- markersMap.icon = "sj-icon-map-centerdata-t-emergency-enterprise";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>企业名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- (item.phone
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- item.phone +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>"
- : "");
- } else if (resourceTable == "centerdata_t_forest_waterintake") {
- //取水口
- markersMap.icon = "sj-icon-map-centerdata-t-forest-waterintake";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>取水口名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- (item.phone
- ? "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- item.phone +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>"
- : "");
- } else if (resourceTable == "centerdata_t_forest_watercrane") {
- //水鹤
- markersMap.icon = "sj-icon-map-centerdata-t-forest-watercrane";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>水鹤名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.phone ? item.phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (
- resourceTable == "centerdata_t_forest_firehydrant@1" ||
- resourceTable == "centerdata_t_forest_firehydrant@2" ||
- resourceTable == "centerdata_t_forest_firehydrant@3"
- ) {
- //消火栓
- // markersMap.icon = 'sj-icon-map-centerdata-t-firecontrol-foam-liquid'
- let icon =
- "sj-icon-map-centerdata-t-forest-firehydrant-" +
- resourceTable.slice(-1);
- // sj-icon-map-centerdata-t-forest-firehydrant-1
- console.log("icon=", icon);
- markersMap.icon = icon;
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>消火栓名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>地址:" +
- (item.firehydrant_address ? item.firehydrant_address : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.phone ? item.phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (resourceTable == "centerdata_t_firecontrol_fire_key_places") {
- //重点场所
- markersMap.icon =
- "sj-icon-map-centerdata-t-firecontrol-fire-key-places";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>重点场所名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.person ? item.person : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.phone ? item.phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (
- resourceTable == "centerdata_t_firecontrol_fire_pressure_sensor"
- ) {
- //压力传感器
- markersMap.icon =
- "sj-icon-map-centerdata-t-firecontrol-fire-pressure-sensor";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>压力传感器名称:" +
- (item.name ? item.name : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>数量:" +
- (item.number ? item.number : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>参数:" +
- (item.parameters ? item.parameters : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (resourceTable == "centerdata_t_firecontrol_foam_liquid") {
- //泡沫液
- markersMap.icon = "sj-icon-map-centerdata-t-firecontrol-foam-liquid";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>单位名称:" +
- (item.company ? item.company : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.contacts_phone ? item.contacts_phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- } else if (resourceTable == "centerdata_t_firecontrol_fulltime_station") {
- //专职站
- markersMap.icon =
- "sj-icon-map-centerdata-t-firecontrol-fulltime-station";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>地址:" +
- (item.address ? item.address : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>负责人:" +
- (item.principal ? item.principal : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>电话:" +
- (item.contacts_phone ? item.contacts_phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "</div>";
- } else if (
- resourceTable == "centerdata_t_firecontrol_other_linkage_force"
- ) {
- //其他联动力量
- markersMap.icon =
- "sj-icon-map-centerdata-t-firecontrol-other-linkage-force";
- markersMap.lng = item.longitude;
- markersMap.lat = item.latitude;
- markersMap.bindPopupHtml =
- '<div class="map-tip">' +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>经纬度:" +
- (item.longitude ? item.longitude : "") +
- "," +
- (item.latitude ? item.latitude : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>单位名称:" +
- (item.company ? item.company : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>单位电话:" +
- (item.company_phone ? item.company_phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系人:" +
- (item.contacts ? item.contacts : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span>" +
- "<span>" +
- ' <div class="d-l-con">' +
- ' <div class="d-l-l-text">' +
- " <h4>联系电话:" +
- (item.contacts_phone ? item.contacts_phone : "") +
- "</h4>" +
- " </div>" +
- " </div>" +
- " </span></div>";
- }
- return markersMap;
- },
- },
- };
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- @import "@/assets/styles/base.scss";
- </style>
|