diff --git a/src/components/MapboxMaps/MapComponent.vue b/src/components/MapboxMaps/MapComponent.vue index 238d1868..d342c6d3 100644 --- a/src/components/MapboxMaps/MapComponent.vue +++ b/src/components/MapboxMaps/MapComponent.vue @@ -395,9 +395,10 @@ style: MapboxDefaultStyle, // maxZoom: props.mapConfig.maxZoom ? props.mapConfig.maxZoom:18, minZoom: props.mapConfig.minZoom ? props.mapConfig.minZoom:1, - zoom: props.mapConfig.zoom ? props.mapConfig.zoom:12, + zoom: props.mapConfig.zoom ? props.mapConfig.zoom:10, pitch:props.mapConfig.angle ? props.mapConfig.angle:0, - center: props.mapConfig.center?.split(","), + center: props.mapConfig.center?.split(",") ? props.mapConfig.center?.split(",") : [117.984425,35.270654], + }); }; diff --git a/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue b/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue index 13f4c7ba..c14362e0 100644 --- a/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue +++ b/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue @@ -8,14 +8,10 @@ style="flex: 1" v-model:value="props.year" :options="yearOptions" - @change=" - (value) => { - emits('auditProgressScreenChange', value, 'year'); - } - " + @change="changeParam" /> -
+
-
审核进度
+
@@ -48,6 +45,9 @@ {{ item.count }}
+
+ +
@@ -55,13 +55,20 @@ - diff --git a/src/views/demo/bootstraps/auditinfo/MapList/index.vue b/src/views/demo/bootstraps/auditinfo/MapList/index.vue index d75b8fff..24b703dc 100644 --- a/src/views/demo/bootstraps/auditinfo/MapList/index.vue +++ b/src/views/demo/bootstraps/auditinfo/MapList/index.vue @@ -1,10 +1,21 @@