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_XT/js/trailingChildrenInfo.js

314 lines
12 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', "trailingChildrenInfo.html?year=" + $(this).text());
let on_year = $(this).text();
echartSizeInfo(on_year);
});
// var data = [
// {name: '南关区', smallClasses: '10%', bigClasses: '5%', sbigClasser: '2%'},
// {name: '宽城区', smallClasses: '12%', bigClasses: '10%', sbigClasser: '5%'},
// {name: '朝阳区', smallClasses: '5%', bigClasses: '15%', sbigClasser: '3%'},
// {name: '二道区', smallClasses: '6%', bigClasses: '20%', sbigClasser: '5%'},
// {name: '绿园区', smallClasses: '7%', bigClasses: '25%', sbigClasser: '8%'},
// {name: '双阳区', smallClasses: '9%', bigClasses: '29%', sbigClasser: '6%'},
// {name: '九台区', smallClasses: '55%', bigClasses: '40%', sbigClasser: '14%'},
// {name: '农安县', smallClasses: '21%', bigClasses: '12%', sbigClasser: '5%'},
// {name: '经开区', smallClasses: '29%', bigClasses: '4%', sbigClasser: '22%'},
// {name: '净月区', smallClasses: '15%', bigClasses: '12%', sbigClasser: '6%'},
// {name: '高新区', smallClasses: '3%', bigClasses: '20%', sbigClasser: '10%'},
// {name: '汽车区', smallClasses: '5%', bigClasses: '25%', sbigClasser: '20%'},
// {name: '榆树市', smallClasses: '40%', bigClasses: '20%', sbigClasser: '17%'},
// {name: '德惠市', smallClasses: '30%', bigClasses: '10%', sbigClasser: '15%'},
// ]
var tableDate = [];
var typeOfBe = '小学';
$('#Syoueryuan').click(function (event) {
$(this).addClass('active');
$(this).siblings().removeClass('active');
typeOfBe = '幼儿园';
tableDate = [];
echartSizeInfo(config_now_year);
})
$('#Sxiaoxue').click(function (event) {
$(this).addClass('active');
$(this).siblings().removeClass('active');
typeOfBe = '小学';
tableDate = [];
echartSizeInfo(config_now_year);
})
$('#Schuzhong').click(function (event) {
$(this).addClass('active');
$(this).siblings().removeClass('active');
tableDate = [];
echartSizeInfo(config_now_year);
typeOfBe = '初中';
})
$('#Sgaozhong').click(function (event) {
$(this).addClass('active');
$(this).siblings().removeClass('active');
tableDate = [];
echartSizeInfo(config_now_year);
typeOfBe = '高中';
})
echartSizeInfo(config_now_year);
function echartSizeInfo(year) {
$.post(config_serverIp + "dataex/report/QuerySimpleGP", JSON.stringify({
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
"query": {
"query_id": "A026",
"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 trailingChildren = [];
var OtherProvinces = [];
var CountyMove = [];
indata.forEach((item, index) => {
if (item.stage === typeOfBe) {
if (item.didgroup === '外省迁入') {
nameData.push(item.gatherregionc);
if (item.studentno == 0) {
OtherProvinces.push(0);
} else {
OtherProvinces.push(Math.round(((item.total / item.studentno).toFixed(4)) * 100));
}
}
if (item.didgroup === '本省外县迁入') {
if (item.studentno == 0) {
CountyMove.push(0);
} else {
CountyMove.push(Math.round(((item.total / item.studentno).toFixed(4)) * 100));
}
}
}
});
nameData.forEach((item, index) => {
trailingChildren.push(OtherProvinces[index] + CountyMove[index])
})
nameData.forEach((item, index) => {
tableDate.push({
name: item,
trailingChildren: `${trailingChildren[index]}%`,
OtherProvinces: `${OtherProvinces[index]}%`,
CountyMove: `${CountyMove[index]}%`,
})
});
// 基于准备好的dom初始化echarts实例
var myChart = echarts.init(document.getElementById('echartTrailing')); // 随迁子女情况柱状图
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: trailingChildren,
barWidth: '15%', //柱子宽度
// barGap: 1, //柱子之间间距
label: {
show: true,
position: 'top'
},
itemStyle: {
normal: {
color: '#168EFE',
opacity: 1,
barBorderRadius: 5,
}
}
},
{
name: '外省迁入比例',
type: 'bar',
data: OtherProvinces,
barWidth: '15%', //柱子宽度
// barGap: 1, //柱子之间间距
label: {
show: true,
position: 'top'
},
itemStyle: {
normal: {
color: '#2CD1C0',
opacity: 1,
barBorderRadius: 5,
}
}
},
{
name: '本省外县迁入比例',
type: 'bar',
data: CountyMove,
barWidth: '15%', //柱子宽度
// barGap: 1, //柱子之间间距
label: {
show: true,
position: 'top'
},
itemStyle: {
normal: {
color: '#FFDB65',
opacity: 1,
barBorderRadius: 5,
}
}
},
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
window.addEventListener("resize", function () {
myChart.resize();
});
getTable();
}, 'json');
}
function getTable() {
$('#trailingTable').empty();
$('#trailingTable').append(
'<tr style="line-height: 0.35rem;"><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 10%; background: #0044bb;">序号</th><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 20%; background: #0044bb;">县域名称</th><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 23%; background: #0044bb;">随迁子女比例</th><th style="text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.2); width: 23%; background: #0044bb;">外省迁入比例</th><th style="text-align: center; color: #fff; width: 23%; background: #0044bb;">本省外县迁入比例</th></tr>'
)
tableDate.forEach((item, index) => {
var newIndex = index + 1;
$('#trailingTable').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: 10%;'>" + newIndex + "</td><td style='text-align: center; color: rgba(255,255,255,.6); border-right: 1px solid rgba(255,255,255,.2); width: 20%;'>" + item.name + "</td><td style='text-align: center; color: rgba(255,255,255,.6); width: 23%; border-right: 1px solid rgba(255,255,255,.2);'>" + item.trailingChildren + "</td><td style='text-align: center; color: rgba(255,255,255,.6); width: 23%; border-right: 1px solid rgba(255,255,255,.2);'>" + item.OtherProvinces + "</td><td style='text-align: center; color: rgba(255,255,255,.6); width: 23%;'>" + item.CountyMove + "</td></tr>"
)
})
}
})