|
|
@@ -48,7 +48,7 @@
|
|
|
<!-- <qiun-title-bar title="工业产值"/> -->
|
|
|
<view class="title-second">工业产值</view>
|
|
|
<view class="charts-box">
|
|
|
- <qiun-data-charts type="demotype" :opts="{fontColor:'#666',xAxis:{boundaryGap:'justify'},yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10}]}}" :chartData="chartData2"/>
|
|
|
+ <qiun-data-charts type="demotype" :opts="{fontColor:'#666',xAxis:{boundaryGap:'justify'},yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10,tofix:2}]}}" :chartData="chartData2"/>
|
|
|
</view>
|
|
|
|
|
|
<qiun-title-bar title="工业投资" style="border-top:10rpx solid #f2f2f2" />
|
|
|
@@ -74,7 +74,7 @@
|
|
|
<!-- <qiun-title-bar title="工业投资额"/> -->
|
|
|
<view class="title-second">工业投资额</view>
|
|
|
<view class="charts-box">
|
|
|
- <qiun-data-charts type="demotype" :opts="{fontColor:'#666',xAxis:{boundaryGap:'justify'},yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10}]}}" :chartData="industryData.chartData2"/>
|
|
|
+ <qiun-data-charts type="demotype" :opts="{fontColor:'#666',xAxis:{boundaryGap:'justify'},yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10,tofix:2}]}}" :chartData="industryData.chartData2"/>
|
|
|
</view>
|
|
|
|
|
|
|
|
|
@@ -101,7 +101,7 @@
|
|
|
<!-- <qiun-title-bar title="工业投资额"/> -->
|
|
|
<view class="title-second">工业投资额</view>
|
|
|
<view class="charts-box">
|
|
|
- <qiun-data-charts type="demotype" :opts="{fontColor:'#666',yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10}]}}" :chartData="importantData.chartData2"/>
|
|
|
+ <qiun-data-charts type="demotype" :opts="{fontColor:'#666',yAxis:{boundaryGap:'justify',data:[{position:'left',textAlign:'left',fontSize:10,tofix:2}]}}" :chartData="importantData.chartData2"/>
|
|
|
</view>
|
|
|
|
|
|
<qiun-title-bar title="科技创新指标" style="border-top:10rpx solid #f2f2f2;margin-bottom: 10rpx;" />
|
|
|
@@ -470,7 +470,7 @@
|
|
|
}else if(companyList.length === 0){
|
|
|
this.companyOpts.enableScroll = false;
|
|
|
}
|
|
|
- balanceList = balanceList.map((item)=>{ return (Number(item)/10000).toFixed(2)});
|
|
|
+ // balanceList = balanceList.map((item)=>{ return (Number(item)/10000).toFixed(2)});
|
|
|
// res.data.data.month_list.forEach((item)=>{
|
|
|
// lineBalanceList.push(item.balance);
|
|
|
// lineLast.push(item.last_balance)
|
|
|
@@ -589,7 +589,8 @@
|
|
|
this.importantData.importent_project_count = data.importent_project_count || '-';
|
|
|
this.importantData.new_project_count = data.new_project_count|| '-';
|
|
|
this.importantData.continue_project_count = data.continue_project_count|| '-';
|
|
|
- this.importantData.investment_count = data.investment_count ? (data.investment_count/10000).toFixed(2):0
|
|
|
+ this.importantData.investment_count = data.investment_count || 0;
|
|
|
+ //this.importantData.investment_count = data.investment_count ? (data.investment_count/10000).toFixed(2):0
|
|
|
if(data.province_level_count == 0 && data.city_level_count == 0 && data.area_level_count == 0 && data.new_city_level_count == 0){
|
|
|
this.importantData.chartData.series[0].data = []
|
|
|
}else{
|
|
|
@@ -763,7 +764,7 @@
|
|
|
},
|
|
|
goImportant(idx){
|
|
|
uni.navigateTo({
|
|
|
- url:'./importantPage/index?idx=' + idx
|
|
|
+ url:'./importantPage/index?idx=' + idx + '&year=' + this.dateYear + '&month=' + this.dateMonth
|
|
|
})
|
|
|
}
|
|
|
}
|