|
|
@ -89,7 +89,8 @@ |
|
|
|
|
|
|
|
</div> |
|
|
|
<div class="m-pagination"> |
|
|
|
<el-pagination hide-on-single-page :current-page="demand.pageNo" |
|
|
|
<el-pagination hide-on-single-page |
|
|
|
:current-page="demand.pageNo" |
|
|
|
:page-size="demand.pageSize" |
|
|
|
:total="demand.total" |
|
|
|
background |
|
|
@ -369,30 +370,28 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
// import 'ol/ol.css' |
|
|
|
import { Map, View } from 'ol' |
|
|
|
import { Map, View } from 'ol'; |
|
|
|
import Feature from "ol/Feature.js"; |
|
|
|
import Overlay from 'ol/Overlay'; |
|
|
|
import { boundingExtent } from 'ol/extent.js'; |
|
|
|
import GeoJSON from 'ol/format/GeoJSON.js'; |
|
|
|
import Point from "ol/geom/Point.js"; |
|
|
|
import { DoubleClickZoom, Select } from 'ol/interaction.js'; |
|
|
|
import TileLayer from 'ol/layer/Tile.js'; |
|
|
|
import ImageLayer from 'ol/layer/Image'; |
|
|
|
import { Raster as RasterSource } from 'ol/source'; |
|
|
|
import XYZ from 'ol/source/XYZ.js'; |
|
|
|
import VectorLayer from 'ol/layer/Vector.js'; |
|
|
|
import VectorSource from 'ol/source/Vector.js'; |
|
|
|
import GeoJSON from 'ol/format/GeoJSON.js'; |
|
|
|
import Point from "ol/geom/Point.js"; |
|
|
|
import Feature from "ol/Feature.js"; |
|
|
|
import Overlay from 'ol/Overlay'; |
|
|
|
import { defaults as defaultInteractions, Select, DoubleClickZoom } from 'ol/interaction.js'; |
|
|
|
import { getCenter, boundingExtent } from 'ol/extent.js'; |
|
|
|
import { Circle as CircleStyle, Icon, Fill, Stroke, Style, Text } from 'ol/style.js'; |
|
|
|
import XYZ from 'ol/source/XYZ.js'; |
|
|
|
import { Fill, Icon, Stroke, Style, Text } from 'ol/style.js'; |
|
|
|
|
|
|
|
import nextTick from 'dai-js/tools/nextTick' |
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
import { requestGet, requestPost } from "@/js/dai/request"; |
|
|
|
import nextTick from 'dai-js/tools/nextTick'; |
|
|
|
import { Loading } from 'element-ui'; //引入Loading服务 |
|
|
|
import { requestPost, requestGet } from "@/js/dai/request"; |
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
|
|
|
|
|
|
|
|
import cptTb from "@/views/modules/visual/cpts/tb"; |
|
|
|
import cptCard from "@/views/modules/visual/cpts/card"; |
|
|
|
import ScreenLoading from "@/views/modules/visual/cpts/loading"; |
|
|
|
import cptTb from "@/views/modules/visual/cpts/tb"; |
|
|
|
import People from "../../basicinfo/people"; |
|
|
|
|
|
|
|
var centerPointGlobal = [120.664619, 36.504963] |
|
|
|