|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
<div class="thzl">
|
|
|
+ <div class="tip">本页面土地闲置率和闲置处置率只统计2022年-2024年数据</div>
|
|
|
<div class="content">
|
|
|
<div class="item" v-for="(sd, index) in sdlist" :key="index">
|
|
|
<div class="icon">
|
|
@@ -67,7 +68,7 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getData();
|
|
|
- console.log(store.state.cockpit_date,'tt')
|
|
|
+ console.log(store.state.cockpit_date, "tt");
|
|
|
},
|
|
|
methods: {
|
|
|
changeData(name, updata) {
|
|
@@ -103,7 +104,7 @@ export default {
|
|
|
this.jdData.result = [[], [], [], []];
|
|
|
district(this.params).then((res) => {
|
|
|
res.data.forEach((jdData) => {
|
|
|
- this.jdData.x_data.push(jdData.districtCode || jdData.districtName);
|
|
|
+ this.jdData.x_data.push(jdData.districtName);
|
|
|
this.jdData.result[0].push(jdData.confirmAre);
|
|
|
this.jdData.result[1].push(jdData.disposalArea);
|
|
|
this.jdData.result[2].push((jdData.idleRate * 100).toFixed(2));
|
|
@@ -167,6 +168,12 @@ export default {
|
|
|
font-size: 20px;
|
|
|
color: #68f4fb;
|
|
|
border: 1px solid #4682b4;
|
|
|
+ // rgba(0, 93, 207, 0.8)
|
|
|
+ background: linear-gradient(
|
|
|
+ to bottom,
|
|
|
+ transparent,
|
|
|
+ rgba(70, 130, 180, 0.8)
|
|
|
+ );
|
|
|
border-radius: 50%;
|
|
|
}
|
|
|
.confirm {
|