Explorar el Código

修改部分样式问题

Version1.0
YF-yuan hace 3 años
padre
commit
50df8e45da
Se han modificado 4 ficheros con 26 adiciones y 21 borrados
  1. +17
    -8
      src/views/Home.vue
  2. +6
    -11
      src/views/leftCompoents/landUse.vue
  3. +1
    -0
      src/views/leftCompoents/outletComponents.vue
  4. +2
    -2
      src/views/leftCompoents/popupComponents.vue

+ 17
- 8
src/views/Home.vue Ver fichero

@@ -94,7 +94,7 @@
:key="$index" :index="index + $index+1+''" @click="selectParams($item.type, $item.value, index, $index)">{{$item.name}}: {{ $item.cf }}</el-menu-item>
</el-menu-item-group>
<el-menu-item-group>
<template slot="title">反演参照</template>
<template slot="title">风险源</template>
<el-menu-item v-for="($item, $index) in refList"
:key="$index" :index="index + '-5'">
<input
@@ -502,6 +502,7 @@ export default {
["居民地", "#1E6510"],
["拆迁未利用地", "#7FFFFF"],
["堆土", "#571919 "],
['林地', 'brown']
];
this.landColorList = this.landColor; // 土地占有面积

@@ -726,6 +727,13 @@ export default {
return this.outletActiveIcon

}
} else {
return new Style({
stroke:new Stroke({
color: "cyan",
width: 5
})
})
}
}
});
@@ -737,7 +745,6 @@ export default {
this.map.removeOverlay(this.overlayPlace);
if(properties.river) { // 表示为采样点数据
this.popupData = properties;
console.log(this.popupData);
let coordinate = e.mapBrowserEvent.coordinate;
this.overlay.setPosition(coordinate);
this.overlay.setOffset([140, -10]);
@@ -1066,11 +1073,11 @@ body {
/* */
.markBox {
position: absolute;
bottom: 40px;
bottom: 10px;
left: 10px;
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-end;
}
/* 色带 */
.colorMark {
@@ -1175,7 +1182,7 @@ body {
}
/* 数据统计弹框 */
.chart {
width: 360px;
width: 380px;
padding: 10px;
position: absolute;
top: 80px;
@@ -1242,7 +1249,7 @@ body {
}
.placeChart {
width: 100%;
padding: 10px;
/* padding: 10px; */
display: flex;
flex-direction: column;
justify-content: flex-start;
@@ -1261,17 +1268,19 @@ body {
/* 弹出框 */
.showPopupPoint {
width: 220px;
height: 180px;
height: 170px;
padding: 10px;
background-color: rgb(255, 255, 255);
}
.showPopupPlace {
width: 250px;
width: 220px;
height: 140px;
padding: 10px;
background-color: rgb(255, 255, 255);
}
.showPopupOutlet {
width: 220px;
height: 230px;
padding: 10px;
background-color: rgb(255, 255, 255);
}

+ 6
- 11
src/views/leftCompoents/landUse.vue Ver fichero

@@ -38,9 +38,9 @@ export default {
const chart = new Chart({
  container: 'landUse',
//   autoFit: true,
width: 300,
width: 320,
  height: 230,
padding: [0, 30, 10, 30],
padding: [0, 30, 10, 60],
});
chart.data(data);
chart.scale('ratio', {
@@ -50,13 +50,13 @@ chart.scale('ratio', {
  },
});
chart.coordinate('theta', {
  radius: 0.6,
  radius: 0.55,
  innerRadius: 0.7,
});
chart.tooltip({
  showTitle: false,
  showMarkers: false,
  itemTpl: '<li class="g2-tooltip-list-item"><span style="background-color:{color};" class="g2-tooltip-marker"></span>{name}: {value}</li>',
});
chart.legend(false);
// 辅助文本
@@ -104,7 +104,7 @@ chart
  .label('ratio', (ratio) => {
    return {
      content: (data) => {
        return `${data.lc.substr(0, 4) + '...'} ${parseFloat(ratio).toFixed(2)}%`;
        return `${data.lc.substr(0, 4)} ${parseFloat(ratio).toFixed(2)}%`;
      },
    };
  })
@@ -123,10 +123,5 @@ chart.render();
</script>

<style scoped>
.g2-tooltip {
/* width: 80px; */
height: 30px;
line-height: 30px;
text-align: center;
}

</style>

+ 1
- 0
src/views/leftCompoents/outletComponents.vue Ver fichero

@@ -10,6 +10,7 @@
<span>纬度:{{dataList.lat=='0.0'?'31.996371':dataList.lat}}</span>
<span class="imgtitle">现场照片</span>
<img class="outletImg" src="../../assets/img/gisdemo/outletImg.png" alt="">
<!-- <img src="" alt=""> -->
</li>
</ul>
</div>

+ 2
- 2
src/views/leftCompoents/popupComponents.vue Ver fichero

@@ -7,7 +7,7 @@
</p>
<ul class="paramsList">
<li class="value">
<span>COD:{{dataList.cod}} mg/L</span>
<span>COD_Mn:{{dataList.cod}} mg/L</span>
<span class="upImg" v-show="dataList.cod > 20"></span>
</li>
<li class="value">
@@ -74,7 +74,7 @@ export default {
}
#popupComponents .paramsList {
width: 100%;
margin: 10px;
margin-left: 10px;
list-style: none;
display: flex;
flex-direction: column;

Cargando…
Cancelar
Guardar