230320a303 2 years ago
parent
commit
2a93961b7c

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/chunk-4050e110.22c0e401.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.db79bb63.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-02c82ebf.47bbe8d2.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-4050e110.5bda9848.js


+ 1 - 1
src/views/map/components/popup/MapTextEdit.vue

@@ -48,7 +48,7 @@ export default {
       strokeColor: '#ff003f',
       colorArr: [
         {color: '#ff0', t: '新楼盘'}, 
-        {color: '#9f7df4', t: '二手房'}, 
+        {color: '#bb9c2c', t: '二手房'}, 
         {color: '#e8d0e6', t: '还建房'}, 
         {color: '#ff9149', t: '幼儿园'}, 
         {color: '#ff7fbf', t: '小初中'}, 

+ 10 - 2
src/views/map/dtl.vue

@@ -301,7 +301,7 @@ export default {
           const schoolObj = cObj.schoolObj ? JSON.parse(cObj.schoolObj) : {}
           const typeObj = {
             '#ff0': '新楼盘',
-            '#9f7df4': '二手房',
+            '#bb9c2c': '二手房',
             '#e8d0e6': '还建房',
             '#ff9149': '幼儿园',
             '#ff7fbf': '小学初中',
@@ -718,7 +718,15 @@ export default {
             position: [data.mapDiyObj.center[0], data.mapDiyObj.center[1]],
           }
           this.polylines = data.polylines && data.polylines.length > 0 ? [...data.polylines] : []
-          this.polygons = [...data.polygons]
+          let polygons = [...data.polygons]
+          // 
+          // polygons.forEach(item => {
+          //   if (item.fillColor === '#9f7df4') {
+          //     item.fillColor = '#bb9c2c'
+          //     item.strokeColor = '#bb9c2c'
+          //   }
+          // })
+          this.polygons = [...polygons]
           this.markerData = [...data.markerData]
           this.mapDiyObj = {
             ...data.mapDiyObj,

Some files were not shown because too many files changed in this diff