liuyg
2021-10-21 cdb7e75f4d77e745293c59506b438f8ca286d73d
检查条件搜索
5 files modified
374 ■■■■ changed files
src/api/securityCompany/companyDetails.js 8 ●●●●● patch | view | raw | blame | history
src/components/map/main.vue 324 ●●●● patch | view | raw | blame | history
src/views/onSiteInspection/company.vue 16 ●●●● patch | view | raw | blame | history
src/views/onSiteInspection/securityStaff.vue 16 ●●●● patch | view | raw | blame | history
src/views/securityCompany/companyDetails.vue 10 ●●●● patch | view | raw | blame | history
src/api/securityCompany/companyDetails.js
@@ -51,7 +51,7 @@
  })
}
export const getInvestorList = (current, size, params, creditcode) => {
export const getInvestorList = (current, size, params) => {
  return request({
    url: '/api/shareholder/selectShareholderInfo',
    method: 'post',
@@ -59,20 +59,18 @@
      ...params,
      current,
      size,
      creditcode,
    }
  })
}
export const getManageList = (current, size, params, creditcode) => {
export const getManageList = (current, size, params) => {
  return request({
    url: '/api/member/selectMemberInfo',
    method: 'post',
    params: {
      ...params,
      current,
      size,
      creditcode,
      size
    }
  })
}
src/components/map/main.vue
@@ -7,15 +7,14 @@
 * @LastEditTime: 2021-04-24 11:59:43
-->
<template>
    <div id="track_map"
         style="height: 100%"></div>
  <div id="track_map" style="height: 100%"></div>
</template>
<script>
import 'ol/ol.css'
import OlView from 'ol/View.js'
import "ol/ol.css";
import OlView from "ol/View.js";
// import XYZ from 'ol/source/XYZ'
import OlLayerTile from 'ol/layer/Tile.js'
import OlMap from 'ol/Map.js'
import OlLayerTile from "ol/layer/Tile.js";
import OlMap from "ol/Map.js";
import {
    // eslint-disable-next-line no-unused-vars
@@ -39,182 +38,172 @@
    // 缩放到范围控件
    // eslint-disable-next-line no-unused-vars
    ZoomToExtent,
    Rotate
  Rotate,
} from "ol/control.js";
} from 'ol/control.js'
import VectorLayer from "ol/layer/Vector";
import VectorSource from "ol/source/Vector";
import WMTS from "ol/source/WMTS";
import VectorLayer from 'ol/layer/Vector'
import VectorSource from 'ol/source/Vector'
import WMTS from 'ol/source/WMTS'
import WMTSTileGrid from "ol/tilegrid/WMTS";
import WMTSTileGrid from 'ol/tilegrid/WMTS'
import Feature from "ol/Feature.js";
import Point from "ol/geom/Point.js";
import LineString from "ol/geom/LineString.js";
import { Icon, Style, Fill, Stroke } from "ol/style.js";
import Feature from 'ol/Feature.js'
import Point from 'ol/geom/Point.js'
import LineString from 'ol/geom/LineString.js'
import { Icon, Style, Fill, Stroke } from 'ol/style.js'
import { getWidth, getTopLeft } from "ol/extent";
import { getWidth, getTopLeft } from 'ol/extent'
import { get as getProjection } from 'ol/proj'
import { get as getProjection } from "ol/proj";
import XYZ from "ol/source/XYZ";
import start from '@/assets/img/start.png'
import start from "@/assets/img/start.png";
export default {
    name: 'Map',
  name: "Map",
    data () {
        return {
            gunAddlayer: new VectorLayer({ // 图标图层
      gunAddlayer: new VectorLayer({
        // 图标图层
                zIndex: 22,
                source: new VectorSource()
        source: new VectorSource(),
            }),
            peopleAddlayer: new VectorLayer({ // 图标图层
      peopleAddlayer: new VectorLayer({
        // 图标图层
                zIndex: 22,
                source: new VectorSource()
        source: new VectorSource(),
            }),
            carAddlayer: new VectorLayer({ // 图标图层
      carAddlayer: new VectorLayer({
        // 图标图层
                zIndex: 22,
                source: new VectorSource()
        source: new VectorSource(),
            }),
            peopleLineAddlayer: new VectorLayer({ // 图标图层
      peopleLineAddlayer: new VectorLayer({
        // 图标图层
                zIndex: 22,
                source: new VectorSource()
        source: new VectorSource(),
            }),
            startPoint: new VectorLayer({ // 图标图层
      startPoint: new VectorLayer({
        // 图标图层
                zIndex: 22,
                source: new VectorSource()
        source: new VectorSource(),
            }),
            ol2d: null,
        }
    };
    },
    mounted () {
        // 本地开发使用
        // this.ol2d = new OlMap({
        //     layers: [
        //         new OlLayerTile({
        //             zIndex: 4,
        //             title: '影像',
        //             source: new XYZ({
        //                 url: "https://webmap-tile.sf-express.com/MapTileService/rt?fetchtype=static&x={x}&y={y}&z={z}&project=sfmap&pic_size=256&pic_type=png8&data_name=361100&data_format=merged-dat&data_type=normal" // 行政区划
        //             })
        //         })
        //         // ,
        //         // new OlLayerTile({
        //         //     zIndex: 5,
        //         //     title: '道路+中文注记',
        //         //     source: new XYZ({
        //         //         url: 'http://t3.tianditu.com/DataServer?T=cta_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0' // 注记
        //         //     })
        //         // })
        //     ],
        //     // 注意地图控件的写法
        //     controls: defaults().extend([
        //         new FullScreen(),
        //         new ScaleLine(),
        //         new MousePosition(),
        //         new Rotate(),
        //         new Attribution()
        //     ]),
        //     target: 'track_map',
        //     view: new OlView({
        //         center: [0, 0],
        //         zoom: 2,
        //         projection: 'EPSG:4326'
        //     })
        // })
        var projection = getProjection("EPSG:4326");
        var projectionExtent = projection.getExtent();
        var size = getWidth(projectionExtent) / 256;
        var resolutions = [];
        for (var z = 2; z < 19; ++z) {//计算比例尺
            resolutions[z] = size / Math.pow(2, z);
        }
        // 正式服务器上使用
    // 本地开发使用;
        this.ol2d = new OlMap({
            layers: [
                new OlLayerTile({//矢量地图
                    source: new WMTS({
                        url: "http://47.49.21.207:7001/PGIS_S_TileMapServer/Maps/YX",
                        layer: "JX14YGJCIMGL7_L14",
                        style: "default",
                        matrixSet: "JX14YGJCIMGL7_L14",
                        format: "image/png",
                        wrapX: true,
                        tileGrid: new WMTSTileGrid({
                            origin: getTopLeft(projectionExtent),
                            //resolutions: res.slice(0, 15),
                            resolutions: resolutions,
                            matrixIds: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
                        })
        new OlLayerTile({
          zIndex: 4,
          title: "影像",
          source: new XYZ({
            url: "https://webmap-tile.sf-express.com/MapTileService/rt?fetchtype=static&x={x}&y={y}&z={z}&project=sfmap&pic_size=256&pic_type=png8&data_name=361100&data_format=merged-dat&data_type=normal", // 行政区划
                    }),
                })
        }),
        // ,
        // new OlLayerTile({
        //     zIndex: 5,
        //     title: '道路+中文注记',
        //     source: new XYZ({
        //         url: 'http://t3.tianditu.com/DataServer?T=cta_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0' // 注记
        //     })
        // })
            ],
            // 注意地图控件的写法
            controls: defaults().extend([
                new FullScreen(),
                new ScaleLine(),
                // new MousePosition(),
        new MousePosition(),
                new Rotate(),
                new Attribution()
        new Attribution(),
            ]),
            target: 'track_map',
      target: "track_map",
            view: new OlView({
                center: [115.85883507433789, 28.708432053474827],
                projection: projection,
                zoom: 11,
                maxZoom: 15,
                minZoom: 1
        center: [0, 0],
        zoom: 2,
        projection: "EPSG:4326",
      }),
    });
            })
        })
    var projection = getProjection("EPSG:4326");
    var projectionExtent = projection.getExtent();
    var size = getWidth(projectionExtent) / 256;
    var resolutions = [];
    for (var z = 2; z < 19; ++z) {
      //计算比例尺
      resolutions[z] = size / Math.pow(2, z);
    }
    // 正式服务器上使用
    // this.ol2d = new OlMap({
    //     layers: [
    //         new OlLayerTile({//矢量地图
    //             source: new WMTS({
    //                 url: "http://47.49.21.207:7001/PGIS_S_TileMapServer/Maps/YX",
    //                 layer: "JX14YGJCIMGL7_L14",
    //                 style: "default",
    //                 matrixSet: "JX14YGJCIMGL7_L14",
    //                 format: "image/png",
    //                 wrapX: true,
    //                 tileGrid: new WMTSTileGrid({
    //                     origin: getTopLeft(projectionExtent),
    //                     //resolutions: res.slice(0, 15),
    //                     resolutions: resolutions,
    //                     matrixIds: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
    //                 })
    //             }),
    //         })
    //     ],
    //     // 注意地图控件的写法
    //     controls: defaults().extend([
    //         new FullScreen(),
    //         new ScaleLine(),
    //         // new MousePosition(),
    //         new Rotate(),
    //         new Attribution()
    //     ]),
    //     target: 'track_map',
    //     view: new OlView({
    //         center: [115.85883507433789, 28.708432053474827],
    //         projection: projection,
    //         zoom: 11,
    //         maxZoom: 15,
    //         minZoom: 1
    //     })
    // })
        this.parentParameter();
        window.ol2d = this.ol2d
    window.ol2d = this.ol2d;
        var view = this.ol2d.getView()
    var view = this.ol2d.getView();
        view.setCenter([115.85883507433789, 28.708432053474827])
    view.setCenter([115.85883507433789, 28.708432053474827]);
        view.setZoom(13)
    view.setZoom(13);
        this.ol2d.addLayer(this.gunAddlayer)
        this.ol2d.addLayer(this.peopleAddlayer)
        this.ol2d.addLayer(this.carAddlayer)
        this.ol2d.addLayer(this.peopleLineAddlayer)
        this.ol2d.addLayer(this.startPoint)
    this.ol2d.addLayer(this.gunAddlayer);
    this.ol2d.addLayer(this.peopleAddlayer);
    this.ol2d.addLayer(this.carAddlayer);
    this.ol2d.addLayer(this.peopleLineAddlayer);
    this.ol2d.addLayer(this.startPoint);
    },
    methods: {
        addEntitys (item, icon, scale, name, type) {
            this[type].getSource().clear()
      this[type].getSource().clear();
            const iconFeature = new Feature({
                geometry: new Point([Number(item.LGTD), Number(item.LTTD)]),
                name: name,
                attributes: item
            })
        attributes: item,
      });
            const iconStyle = new Style({
                // text: new Text({ // 字体, 未成功, 浪费许多时间
@@ -226,9 +215,9 @@
                image: new Icon({
                    scale: scale,
                    opacity: 1,
                    src: icon
          src: icon,
                    // src: require('../../assets/Mark.png')
                })
        }),
                // new CircleStyle({ // 普通样式
                //   radius: 6,
@@ -240,53 +229,57 @@
                //     width: 0.3,
                //   })
                // }),
            })
      });
            iconFeature.setStyle(iconStyle)
      iconFeature.setStyle(iconStyle);
            this[type].getSource().addFeature(iconFeature)
      this[type].getSource().addFeature(iconFeature);
            this.flyTo(Number(item.LGTD), Number(item.LTTD), 13)
      this.flyTo(Number(item.LGTD), Number(item.LTTD), 13);
        },
        addLines (arr) {
            this.addEntity(arr[0][0], arr[0][1])
            this.peopleLineAddlayer.getSource().clear()
      this.addEntity(arr[0][0], arr[0][1]);
      this.peopleLineAddlayer.getSource().clear();
            // 点坐标
            var lineCoords = arr;// 线里点的集合
            // 要素
            // var lineCoords = [[featureInfo.lineString[0][0],featureInfo.lineString[0][0]],[featureInfo.lineString(0),featureInfo.lineString(0)]];
            var feature_LineString = new Feature({
                geometry: new LineString(lineCoords)
        geometry: new LineString(lineCoords),
            });
            feature_LineString.setStyle(new Style({
      feature_LineString.setStyle(
        new Style({
                //填充色
                fill: new Fill({
                    color: 'rgba(255, 255, 255, 0.2)'
            color: "rgba(255, 255, 255, 0.2)",
                }),
                //边线颜色
                stroke: new Stroke({
                    color: 'rgb(252, 94, 32)',
                    width: 5
            color: "rgb(252, 94, 32)",
            width: 5,
          }),
                })
            }))
      );
      this.peopleLineAddlayer.getSource().addFeature(feature_LineString);
            this.peopleLineAddlayer.getSource().addFeature(feature_LineString)
            this.flyTo(arr[Math.ceil(arr.length / 2)][0], arr[Math.ceil(arr.length / 2)][1], 13)
      this.flyTo(
        arr[Math.ceil(arr.length / 2)][0],
        arr[Math.ceil(arr.length / 2)][1],
        13
      );
        },
        addEntity (LGTD, LTTD) {
            this.startPoint.getSource().clear()
      this.startPoint.getSource().clear();
            const iconFeature = new Feature({
                geometry: new Point([LGTD, LTTD]),
                name: '起始点',
            })
        name: "起始点",
      });
            const iconStyle = new Style({
                // text: new Text({ // 字体, 未成功, 浪费许多时间
@@ -297,15 +290,15 @@
                image: new Icon({
                    anchor: [0.5, 170],              //锚点
                    anchorOrigin: 'top-left',       //锚点源
                    anchorXUnits: 'fraction',       //锚点X值单位
                    anchorYUnits: 'pixels',         //锚点Y值单位
                    offsetOrigin: 'top-left',
          anchorOrigin: "top-left", //锚点源
          anchorXUnits: "fraction", //锚点X值单位
          anchorYUnits: "pixels", //锚点Y值单位
          offsetOrigin: "top-left",
                    scale: 0.2,
                    opacity: 1,
                    src: start
          src: start,
                    // src: require('../../assets/Mark.png')
                })
        }),
                // new CircleStyle({ // 普通样式
                //   radius: 6,
@@ -317,30 +310,29 @@
                //     width: 0.3,
                //   })
                // }),
            })
      });
            iconFeature.setStyle(iconStyle)
      iconFeature.setStyle(iconStyle);
            this.startPoint.getSource().addFeature(iconFeature)
      this.startPoint.getSource().addFeature(iconFeature);
        },
        clearLine () {
            this.peopleLineAddlayer.getSource().clear()
            this.startPoint.getSource().clear()
      this.peopleLineAddlayer.getSource().clear();
      this.startPoint.getSource().clear();
        },
        flyTo (lgtd, lttd, size) {
            var view = this.ol2d.getView()
      var view = this.ol2d.getView();
            view.setCenter([lgtd, lttd])
      view.setCenter([lgtd, lttd]);
            view.setZoom(size)
      view.setZoom(size);
        },
        parentParameter () {
            this.$emit('childParameter', this.ol2d)
        }
    }
}
      this.$emit("childParameter", this.ol2d);
    },
  },
};
</script>
src/views/onSiteInspection/company.vue
@@ -1,8 +1,8 @@
/*
 * @Author: Morpheus
 * @Date: 2021-07-07 17:30:05
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-07-10 16:06:14
 * @Last Modified by: liu
 * @Last Modified time: 2021-10-21 17:29:02
 * menu-name 单位检查
 */
<template>
@@ -75,12 +75,18 @@
          {
            label: "检查人姓名",
            prop: "name",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            // labelWi
          },
          //
          {
            label: "被检查单位",
            prop: "sname",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            overHidden: true,
            // display: false,
            // labelWidth: 120,
@@ -89,6 +95,9 @@
          {
            label: "检查人单位",
            prop: "deptname",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            overHidden: true,
            // // display: false,
            // width: 200,
@@ -123,6 +132,9 @@
          {
            label: "检查结果",
            prop: "results",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            // // display: false,
            // width: 200,
            // labelWidth: 120,
src/views/onSiteInspection/securityStaff.vue
@@ -1,8 +1,8 @@
/*
 * @Author: Morpheus
 * @Date: 2021-07-07 17:30:05
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-07-10 16:06:14
 * @Last Modified by: liu
 * @Last Modified time: 2021-10-21 17:28:35
 * menu-name 保安员检查
 */
<template>
@@ -98,6 +98,9 @@
          {
            label: "保安员姓名",
            prop: "realname",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            //     hide: true,
            //     editDisplay: false,
            //     addDisplay: false
@@ -145,6 +148,9 @@
            label: "检查人姓名",
            prop: "inspectman",
            // display: false,
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            // labelWidth: 120,
            // width: 200,
          },
@@ -161,6 +167,9 @@
            label: "检查人单位",
            overHidden: true,
            prop: "deptname",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            // overHidden: true,
            // type: "date",
            // format: "yyyy-MM-dd",
@@ -208,6 +217,9 @@
          {
            label: "检查结果",
            prop: "examinationType",
            searchLabelWidth: 90,
            searchSpan: 4,
            search: true,
            // labelWidth: 120,
            // display: false,
          },
src/views/securityCompany/companyDetails.vue
@@ -2,7 +2,7 @@
 * @Author: Morpheus
 * @Date: 2021-07-05 16:31:54
 * @Last Modified by: liu
 * @Last Modified time: 2021-09-28 16:49:13
 * @Last Modified time: 2021-10-21 16:56:42
 * menu-name 保安公司详细资料
 */
<template>
@@ -659,11 +659,11 @@
    },
    investorOnLoad(page, params = {}) {
      this.investorLoading = true;
      params["deptId"] = this.form.departmentid;
      getInvestorList(
        page.currentPage,
        page.pageSize,
        Object.assign(params, this.investorQuery),
        this.forms.creditcode
        Object.assign(params, this.investorQuery)
      ).then((res) => {
        const data = res.data.data;
@@ -703,11 +703,11 @@
    },
    manageOnLoad(page, params = {}) {
      this.manageLoading = true;
      params["deptId"] = this.form.departmentid;
      getManageList(
        page.currentPage,
        page.pageSize,
        Object.assign(params, this.manageQuery),
        this.forms.creditcode
        Object.assign(params, this.manageQuery)
      ).then((res) => {
        const data = res.data.data;