You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bigData_CC/js/behindChildrenInfo.js

259 lines
9.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// 留守儿童情况
$(function () {
// 标题增加年份
$('#title_text').prepend(config_now_year)
// 渲染年份列表 在nav.js中获取select_year
$('#select-year').append(select_year)
$('.select').on('click', '.placeholder', function (e) {
var parent = $(this).closest('.select');
if (!parent.hasClass('is-open')) {
parent.addClass('is-open');
$('.select.is-open').not(parent).removeClass('is-open');
} else {
parent.removeClass('is-open');
}
e.stopPropagation();
}).on('click', 'ul>li', function () {
var parent = $(this).closest('.select');
parent.removeClass('is-open').find('.placeholder').text($(this).text());
$(window).attr('location', "behindChildrenInfo.html?year=" + $(this).text());
let on_year = $(this).text();
echartSizeInfo(on_year);
});
// var data = [
// {name: '南关区', smallClasses: '10%', bigClasses: '5%'},
// {name: '宽城区', smallClasses: '12%', bigClasses: '10%'},
// {name: '朝阳区', smallClasses: '5%', bigClasses: '15%'},
// {name: '二道区', smallClasses: '6%', bigClasses: '20%'},
// {name: '绿园区', smallClasses: '7%', bigClasses: '25%'},
// {name: '双阳区', smallClasses: '9%', bigClasses: '29%'},
// {name: '九台区', smallClasses: '55%', bigClasses: '40%'},
// {name: '农安县', smallClasses: '21%', bigClasses: '12%'},
// {name: '经开区', smallClasses: '29%', bigClasses: '4%'},
// {name: '净月区', smallClasses: '15%', bigClasses: '12%'},
// {name: '高新区', smallClasses: '3%', bigClasses: '20%'},
// {name: '汽车区', smallClasses: '5%', bigClasses: '25%'},
// {name: '榆树市', smallClasses: '40%', bigClasses: '20%'},
// {name: '德惠市', smallClasses: '30%', bigClasses: '10%'},
// ]
var tableDate = [];
echartSizeInfo(config_now_year);
function echartSizeInfo(year) {
$.post(config_serverIp + "dataex/report/QuerySimpleGP", JSON.stringify({
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
"query": {
"query_id": "A027",
"query_param": [
year
]
},
"query_cache": 0,
"query_count": [
"total"
],
"query_format": "json",
"query_group": [
"gatherregionc"
]
}), function (resport) {
var data = resport.result;
var indata = JSON.parse(data);
var nameData = [];
var smallClasses = [];
var bigClasses = [];
indata.forEach((item, index) => {
if (item.stage === '小学') {
nameData.push(item.gatherregionc);
if (item.studentno == 0) {
smallClasses.push(0);
} else {
smallClasses.push(Math.ceil(((item.total / item.studentno).toFixed(4)) * 100));
}
}
if (item.stage === '初中') {
if (item.studentno == 0) {
bigClasses.push(0);
} else {
bigClasses.push(Math.ceil(((item.total / item.studentno).toFixed(4)) * 100));
}
}
});
nameData.forEach((item, index) => {
tableDate.push({
name: item,
smallClasses: `${smallClasses[index]}%`,
bigClasses: `${bigClasses[index]}%`,
})
});
// 基于准备好的dom初始化echarts实例
var myChart = echarts.init(document.getElementById('echartBehind')); // 学校规模情况柱状图
option = {
// backgroundColor: '#00265f',
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
legend: {
data: ['小学', '初中'],
textStyle: {
color: '#fff'
}
},
grid: {
left: '0%',
top: '8%',
right: '0%',
bottom: '4%',
containLabel: true
},
xAxis: [{
type: 'category',
data: nameData,
axisLine: {
show: true,
lineStyle: {
color: "rgba(255,255,255,.1)",
width: 1,
type: "solid"
},
},
axisTick: {
show: false,
},
axisLabel: {
interval: 0,
// rotate:50,
show: true,
splitNumber: 15,
textStyle: {
color: "rgba(255,255,255,.6)",
fontSize: '12',
},
},
}],
yAxis: [{
type: 'value',
axisLabel: {
formatter: '{value} %',
show: true,
textStyle: {
color: "rgba(255,255,255,.6)",
fontSize: '12',
},
},
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: "rgba(255,255,255,.1 )",
width: 1,
type: "solid"
},
},
splitLine: {
lineStyle: {
color: "rgba(255,255,255,.1)",
}
}
}],
series: [
{
name: '小学',
type: 'bar',
data: smallClasses,
barWidth: '15%', //柱子宽度
// barGap: 1, //柱子之间间距
label: {
show: true,
position: 'top'
},
itemStyle: {
normal: {
color: '#168EFE',
opacity: 1,
barBorderRadius: 5,
}
}
},
{
name: '初中',
type: 'bar',
data: bigClasses,
barWidth: '15%', //柱子宽度
// barGap: 1, //柱子之间间距
label: {
show: true,
position: 'top'
},
itemStyle: {
normal: {
color: '#2CD1C0',
opacity: 1,
barBorderRadius: 5,
}
}
},
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
window.addEventListener("resize", function () {
myChart.resize();
});
getTable();
}, 'json');
}
function getTable() {
$('#behindTable').empty();
$('#behindTable').append(
'<tr style="line-height: 0.35rem;"><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 15%; background: #0044bb;">序号</th><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 25%; background: #0044bb;">县域名称</th><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 29%; background: #0044bb;">小学</th><th style="text-align: center; color: #fff; width: 29%; background: #0044bb;">初中</th></tr>'
)
tableDate.forEach((item, index) => {
var newIndex = index + 1;
$('#behindTable').append(
"<tr style='line-height: 0.35rem; border-bottom: 1px solid rgba(255,255,255,.2)'><td style='text-align: center; color: rgba(255,255,255,.6); border-right: 1px solid rgba(255,255,255,.2); width: 15%;'>" + newIndex + "</td><td style='text-align: center; color: rgba(255,255,255,.6); border-right: 1px solid rgba(255,255,255,.2); width: 25%;'>" + item.name + "</td><td style='text-align: center; color: rgba(255,255,255,.6); width: 29%; border-right: 1px solid rgba(255,255,255,.2);'>" + item.smallClasses + "</td><td style='text-align: center; color: rgba(255,255,255,.6); width: 29%;'>" + item.bigClasses + "</td></tr>"
)
})
}
})