|
|
|
@ -62,6 +62,10 @@ |
|
|
|
<div class="pie-table-total-count xz">{{houseData.xzHouseTotal}}</div> |
|
|
|
<div class="pie-table-title">闲置房屋数</div> |
|
|
|
</div> |
|
|
|
<div class="pie-table-total "> |
|
|
|
<div class="pie-table-total-count xz">{{houseData.wscHouseTotal}}</div> |
|
|
|
<div class="pie-table-title">未出售房屋数</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="loading-status" |
|
|
|
@ -153,6 +157,11 @@ |
|
|
|
<div class="pie-table-title table-table-title">{{item.xzHouseRatio+'%'}}</div> |
|
|
|
<div class="pie-table-title table-table-title">闲置房屋数</div> |
|
|
|
</div> |
|
|
|
<div class="pie-table-total "> |
|
|
|
<div class="pie-table-total-count colorwhite">{{item.wscHouseTotal}}</div> |
|
|
|
<div class="pie-table-title table-table-title">{{item.wscHouseRatio+'%'}}</div> |
|
|
|
<div class="pie-table-title table-table-title">未出售房屋数</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="item_right"> |
|
|
|
<div class="pie-table-total"> |
|
|
|
@ -232,8 +241,10 @@ export default { |
|
|
|
czHouseRatio: '5%',//房屋出租总数占比(保留两位小数,带百分号的) |
|
|
|
xzHouseTotal: 200,//房屋闲置总数 |
|
|
|
xzHouseRatio: '70%',//房屋闲置总数占比(保留两位小数,带百分号的) |
|
|
|
wscHouseTotal: 100,//房屋未售出总数 |
|
|
|
wscHouseRatio: '20%',//房屋未售出总数占比 |
|
|
|
}, |
|
|
|
houseColorArray: ['#3dda83', '#e43c26', '#fac126'], |
|
|
|
houseColorArray: ['#3dda83', '#e43c26', '#fac126', '#fc8452'], |
|
|
|
housePieData: [], |
|
|
|
|
|
|
|
legendArray: [ |
|
|
|
@ -248,6 +259,10 @@ export default { |
|
|
|
{ |
|
|
|
name: '闲置房屋数', |
|
|
|
url: require('../../../../../assets/img/shuju/measure/huang@2x.png') |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '未出售房屋数', |
|
|
|
url: require('../../../../../assets/img/shuju/measure/cheng.png') |
|
|
|
} |
|
|
|
], |
|
|
|
|
|
|
|
@ -379,10 +394,15 @@ export default { |
|
|
|
name: '闲置房屋数', |
|
|
|
value: this.houseData.xzHouseRatio |
|
|
|
} |
|
|
|
let obj4 = { |
|
|
|
name: '未出售房屋数', |
|
|
|
value: this.houseData.wscHouseRatio |
|
|
|
} |
|
|
|
|
|
|
|
this.housePieData.push(obj1) |
|
|
|
this.housePieData.push(obj2) |
|
|
|
this.housePieData.push(obj3) |
|
|
|
this.housePieData.push(obj4) |
|
|
|
|
|
|
|
this.housePieOption.title.text = this.houseData.houseTotal |
|
|
|
this.housePieOption.series[1].itemStyle = { |
|
|
|
|