1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135 |
- //自调用函数
- (function() {
- // 1、页面一加载就要知道页面宽度计算
- var setFont = function() {
- // 因为要定义变量可能和别的变量相互冲突,污染,所有用自调用函数
- var html = document.documentElement; // 获取html
- // 获取宽度
- var width = html.clientWidth;
- // 判断
- if (width < 1024) width = 1024
- if (width > 1920) width = 1920
- // 设置html的基准值
- var fontSize = width / 80 + 'px';
- // 设置给html
- html.style.fontSize = fontSize;
- }
- setFont();
- // 2、页面改变的时候也需要设置
- // 尺寸改变事件
- window.onresize = function() {
- setFont();
- }
- })();
- $.get('https://www.jucai.gov.cn/api/config/bi/jkq', (res) => {
- init(res)
- })
- function init(data) {
- this.talent_level(data.talent_level);
- this.talent_industry(data.talent_industry);
- this.talent_age(data.talent_age);
- this.talent_education(data.talent_education);
- this.total_count(data.total_count);
- this.company_trade(data.company_trade);
- this.job_category(data.job_category);
- this.job_wage(data.job_wage);
- this.job_education(data.job_education);
- this.resume_sex(data.resume_sex);
- this.resume_trade(data.resume_trade);
- this.resume_age(data.resume_age);
- this.resume_education(data.resume_education);
- }
- function resume_education(data) {
- let unknown = 0;
- let total = 0;
- data.map((item, index) => {
- if (item.name == '其他') {
- unknown += item.count;
- //其他数据
- item.value = item.count;
- } else {
- total += item.count;
- item.value = item.count;
- }
- return item;
- });
- $('.resume_education-unknown').text(unknown);
- $('.resume_education-total').text(total);
- var myechar = echarts.init($('.resume_education')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '学历',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function resume_age(data) {
- let unknown = 0;
- let total = 0;
- data.map((item, index) => {
- if (item.name == '其他') {
- unknown += item.count;
- //其他数据
- item.value = item.count;
- } else {
- total += item.count;
- item.value = item.count;
- }
- return item;
- });
- // $('.age-unknown').text(unknown);
- $('.resume_age-total').text(total);
- var myechar = echarts.init($('.resume_age')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '年龄',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function resume_trade(data) {
- let titleArr = [];
- let countArr = [];
- let total = 0;
- let count = data.length;
- // 中间省略的数据 准备三项
- var hiddenItem = {
- name: '',
- value: 10,
- // 柱子颜色
- itemStyle: {
- color: '#254065'
- },
- // 鼠标经过柱子颜色
- emphasis: {
- itemStyle: {
- color: '#254065'
- }
- },
- // 工具提示隐藏
- tooltip: {
- extraCssText: 'opacity:0'
- }
- };
- data.forEach((item, index) => {
- if (index < 7 || index + 7 >= count) {
- titleArr.push(item.name)
- countArr.push(item.count)
- } else if (count > 12 && index == 7) {
- //随机三个
- let arr = []
- for (let i = 7; i < count - 7; i++) {
- arr.push(i)
- }
- let randomArr = [];
- while (randomArr.length < 3) {
- let temp = (Math.random() * arr.length) >> 0;
- randomArr.push(arr.splice(temp, 1)[0]);
- }
- randomArr.forEach((randomIndex) => {
- titleArr.push(data[randomIndex].name)
- countArr.push(data[randomIndex].count)
- })
- }
- total += item.count
- });
- $('.resume_trade-count').text(count)
- $('.resume_trade-total').text(total)
- option = {
- // 工具提示
- tooltip: {
- // 触发类型 经过轴触发axis 经过轴触发item
- trigger: 'item',
- // 轴触发提示才有效
- axisPointer: {
- // 默认为直线,可选为:'line' 线效果 | 'shadow' 阴影效果
- type: 'shadow'
- }
- },
- // 图表边界控制
- grid: {
- // 距离 上右下左 的距离
- left: '0',
- right: '3%',
- bottom: '3%',
- top: '5%',
- // 大小是否包含文本【类似于boxsizing】
- containLabel: true,
- //显示边框
- show: true,
- //边框颜色
- borderColor: 'rgba(0, 240, 255, 0.3)'
- },
- // 控制x轴
- xAxis: [{
- // 使用类目,必须有data属性
- type: 'category',
- // 使用 data 中的数据设为刻度文字
- data: titleArr,
- // 刻度设置
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- }
- }],
- // 控制y轴
- yAxis: [{
- // 使用数据的值设为刻度文字
- type: 'value',
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(0, 240, 255, 0.3)'
- }
- },
- }],
- // 控制x轴
- series: [
- {
- // series配置
- // 颜色
- itemStyle: {
- // 提供的工具函数生成渐变颜色
- color: new echarts.graphic.LinearGradient(
- // (x1,y2) 点到点 (x2,y2) 之间进行渐变
- 0, 0, 0, 1,
- [{
- offset: 0,
- color: '#00fffb'
- }, // 0 起始颜色
- {
- offset: 1,
- color: '#0061ce'
- } // 1 结束颜色
- ]
- )
- },
- // 图表数据名称
- name: '求职人数',
- // 图表类型
- type: 'bar',
- // 柱子宽度
- barWidth: '60%',
- // 数据
- data: countArr
- }
- ]
- };
- var myechart = echarts.init($('.resume_trade')[0]);
- myechart.setOption(option);
- }
- function resume_sex(data) {
- data.forEach((item, index) => {
- switch (item.name) {
- case '总人数':
- $('.resume_sex-total').text(item.count);
- break;
- case '男':
- $('.resume_sex-male').text(item.count);
- break;
- case '女':
- $('.resume_sex-female').text(item.count);
- break;
- }
- })
- }
- function job_education(data) {
- data.map((item, index) => {
- item.value = item.count;
- return item;
- });
- var myechar = echarts.init($('.job_education')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '学历范围',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function job_wage(data) {
- data.map((item, index) => {
- item.value = item.count;
- return item;
- });
- var myechar = echarts.init($('.job_wage')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '薪酬要求',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function job_category(data) {
- let titleArr = [];
- let countArr = [];
- let total = 0;
- let count = data.length;
- // 中间省略的数据 准备三项
- var hiddenItem = {
- name: '',
- value: 10,
- // 柱子颜色
- itemStyle: {
- color: '#254065'
- },
- // 鼠标经过柱子颜色
- emphasis: {
- itemStyle: {
- color: '#254065'
- }
- },
- // 工具提示隐藏
- tooltip: {
- extraCssText: 'opacity:0'
- }
- };
- data.forEach((item, index) => {
- if (index < 7 || index + 7 >= count) {
- titleArr.push(item.name)
- countArr.push(item.count)
- } else if (count > 12 && index == 7) {
- //随机三个
- let arr = []
- for (let i = 7; i < count - 7; i++) {
- arr.push(i)
- }
- let randomArr = [];
- while (randomArr.length < 3) {
- let temp = (Math.random() * arr.length) >> 0;
- randomArr.push(arr.splice(temp, 1)[0]);
- }
- randomArr.forEach((randomIndex) => {
- titleArr.push(data[randomIndex].name)
- countArr.push(data[randomIndex].count)
- })
- }
- total += item.count
- });
- $('.job_category-count').text(count)
- $('.job_category-total').text(total)
- option = {
- // 工具提示
- tooltip: {
- // 触发类型 经过轴触发axis 经过轴触发item
- trigger: 'item',
- // 轴触发提示才有效
- axisPointer: {
- // 默认为直线,可选为:'line' 线效果 | 'shadow' 阴影效果
- type: 'shadow'
- }
- },
- // 图表边界控制
- grid: {
- // 距离 上右下左 的距离
- left: '0',
- right: '3%',
- bottom: '3%',
- top: '5%',
- // 大小是否包含文本【类似于boxsizing】
- containLabel: true,
- //显示边框
- show: true,
- //边框颜色
- borderColor: 'rgba(0, 240, 255, 0.3)'
- },
- // 控制x轴
- xAxis: [{
- // 使用类目,必须有data属性
- type: 'category',
- // 使用 data 中的数据设为刻度文字
- data: titleArr,
- // 刻度设置
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- }
- }],
- // 控制y轴
- yAxis: [{
- // 使用数据的值设为刻度文字
- type: 'value',
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(0, 240, 255, 0.3)'
- }
- },
- }],
- // 控制x轴
- series: [
- {
- // series配置
- // 颜色
- itemStyle: {
- // 提供的工具函数生成渐变颜色
- color: new echarts.graphic.LinearGradient(
- // (x1,y2) 点到点 (x2,y2) 之间进行渐变
- 0, 0, 0, 1,
- [{
- offset: 0,
- color: '#00fffb'
- }, // 0 起始颜色
- {
- offset: 1,
- color: '#0061ce'
- } // 1 结束颜色
- ]
- )
- },
- // 图表数据名称
- name: '需求数量',
- // 图表类型
- type: 'bar',
- // 柱子宽度
- barWidth: '60%',
- // 数据
- data: countArr
- }
- ]
- };
- var myechart = echarts.init($('.job_category')[0]);
- myechart.setOption(option);
- }
- function company_trade(data) {
- let titleArr = [];
- let countArr = [];
- let total = 0;
- let count = data.length;
- // 中间省略的数据 准备三项
- var hiddenItem = {
- name: '',
- value: 10,
- // 柱子颜色
- itemStyle: {
- color: '#254065'
- },
- // 鼠标经过柱子颜色
- emphasis: {
- itemStyle: {
- color: '#254065'
- }
- },
- // 工具提示隐藏
- tooltip: {
- extraCssText: 'opacity:0'
- }
- };
- data.forEach((item, index) => {
- if (index < 7 || index + 7 >= count) {
- titleArr.push(item.name)
- countArr.push(item.count)
- } else if (count > 12 && index == 7) {
- //随机三个
- let arr = []
- for (let i = 7; i < count - 7; i++) {
- arr.push(i)
- }
- let randomArr = [];
- while (randomArr.length < 3) {
- let temp = (Math.random() * arr.length) >> 0;
- randomArr.push(arr.splice(temp, 1)[0]);
- }
- randomArr.forEach((randomIndex) => {
- titleArr.push(data[randomIndex].name)
- countArr.push(data[randomIndex].count)
- })
- }
- total += item.count
- });
- $('.company_trade-count').text(count)
- $('.company_trade-total').text(total)
- option = {
- // 工具提示
- tooltip: {
- // 触发类型 经过轴触发axis 经过轴触发item
- trigger: 'item',
- // 轴触发提示才有效
- axisPointer: {
- // 默认为直线,可选为:'line' 线效果 | 'shadow' 阴影效果
- type: 'shadow'
- }
- },
- // 图表边界控制
- grid: {
- // 距离 上右下左 的距离
- left: '0',
- right: '3%',
- bottom: '3%',
- top: '5%',
- // 大小是否包含文本【类似于boxsizing】
- containLabel: true,
- //显示边框
- show: true,
- //边框颜色
- borderColor: 'rgba(0, 240, 255, 0.3)'
- },
- // 控制x轴
- xAxis: [{
- // 使用类目,必须有data属性
- type: 'category',
- // 使用 data 中的数据设为刻度文字
- data: titleArr,
- // 刻度设置
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- }
- }],
- // 控制y轴
- yAxis: [{
- // 使用数据的值设为刻度文字
- type: 'value',
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(0, 240, 255, 0.3)'
- }
- },
- }],
- // 控制x轴
- series: [
- {
- // series配置
- // 颜色
- itemStyle: {
- // 提供的工具函数生成渐变颜色
- color: new echarts.graphic.LinearGradient(
- // (x1,y2) 点到点 (x2,y2) 之间进行渐变
- 0, 0, 0, 1,
- [{
- offset: 0,
- color: '#00fffb'
- }, // 0 起始颜色
- {
- offset: 1,
- color: '#0061ce'
- } // 1 结束颜色
- ]
- )
- },
- // 图表数据名称
- name: '企业数量',
- // 图表类型
- type: 'bar',
- // 柱子宽度
- barWidth: '60%',
- // 数据
- data: countArr
- }
- ]
- };
- var myechart = echarts.init($('.company_trade')[0]);
- myechart.setOption(option);
- }
- function total_count(data) {
- let _html = '';
- let colors = ['#ed3f35', '#eacf19', '#9fe6b8'];
- data.forEach((item, index) => {
- _html += '<div class="item">';
- _html += '<h4 class="train total_count">';
- _html += item.count;
- _html += '</h4>';
- _html += '<span>';
- _html += '<i class="icon-dot" style="color: ' + colors[index % 3] + ';"></i>';
- _html += item.name;
- _html += '</span>';
- _html += '</div>';
- })
- $('.total_count').html(_html);
- }
- function talent_education(data) {
- let unknown = 0;
- let total = 0;
- data.map((item, index) => {
- if (item.name == '其他') {
- unknown += item.count;
- //其他数据
- item.value = item.count;
- } else {
- total += item.count;
- item.value = item.count;
- }
- return item;
- });
- // $('.age-unknown').text(unknown);
- $('.talent_education-total').text(total);
- var myechar = echarts.init($('.talent_education')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '学历',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function talent_age(data) {
- let unknown = 0;
- let total = 0;
- data.map((item, index) => {
- if (item.name == '其他') {
- unknown += item.count;
- //其他数据
- item.value = item.count;
- } else {
- total += item.count;
- item.value = item.count;
- }
- return item;
- });
- // $('.age-unknown').text(unknown);
- $('.talent_age-total').text(total);
- var myechar = echarts.init($('.talent_age')[0]);
- option = {
- // 控制提示
- tooltip: {
- // 非轴图形,使用item的意思是放到数据对应图形上触发提示
- trigger: 'item',
- // 格式化提示内容:
- // a 代表图表名称 b 代表数据名称 c 代表数据 d代表 当前数据/总数据的比例
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- // 控制图表
- series: [{
- // 图表名称
- name: '年龄',
- // 图表类型
- type: 'pie',
- // 南丁格尔玫瑰图 有两个圆 内圆半径10% 外圆半径70%
- // 百分比基于 图表DOM容器的半径
- radius: ['10%', '70%'],
- // 图表中心位置 left 50% top 50% 距离图表DOM容器
- center: ['50%', '50%'],
- // 半径模式,另外一种是 area 面积模式
- roseType: 'radius',
- // 数据集 value 数据的值 name 数据的名称
- data: data,
- //文字调整
- label: {
- fontSize: 10
- },
- //引导线
- labelLine: {
- length: 8,
- length2: 10
- }
- }],
- color: ['#006cff', '#9fe6b8', '#32c5e9', '#1d9dff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff']
- };
- myechar.setOption(option);
- }
- function talent_level(data) {
- let titleArr = [];
- let countArr = [];
- let total = 0;
- let count = data.length;
- // 中间省略的数据 准备三项
- var hiddenItem = {
- name: '',
- value: 10,
- // 柱子颜色
- itemStyle: {
- color: '#254065'
- },
- // 鼠标经过柱子颜色
- emphasis: {
- itemStyle: {
- color: '#254065'
- }
- },
- // 工具提示隐藏
- tooltip: {
- extraCssText: 'opacity:0'
- }
- };
- data.forEach((item, index) => {
- if (index < 7 || index + 7 >= count) {
- titleArr.push(item.name)
- countArr.push(item.count)
- } else if (count > 12 && index == 7) {
- //随机三个
- let arr = []
- for (let i = 7; i < count - 7; i++) {
- arr.push(i)
- }
- let randomArr = [];
- while (randomArr.length < 3) {
- let temp = (Math.random() * arr.length) >> 0;
- randomArr.push(arr.splice(temp, 1)[0]);
- }
- randomArr.forEach((randomIndex) => {
- titleArr.push(data[randomIndex].name)
- countArr.push(data[randomIndex].count)
- })
- }
- total += item.count
- });
- $('.talent_level-total').text(total)
- option = {
- // 工具提示
- tooltip: {
- // 触发类型 经过轴触发axis 经过轴触发item
- trigger: 'item',
- // 轴触发提示才有效
- axisPointer: {
- // 默认为直线,可选为:'line' 线效果 | 'shadow' 阴影效果
- type: 'shadow'
- }
- },
- // 图表边界控制
- grid: {
- // 距离 上右下左 的距离
- left: '0',
- right: '3%',
- bottom: '3%',
- top: '5%',
- // 大小是否包含文本【类似于boxsizing】
- containLabel: true,
- //显示边框
- show: true,
- //边框颜色
- borderColor: 'rgba(0, 240, 255, 0.3)'
- },
- // 控制x轴
- xAxis: [{
- // 使用类目,必须有data属性
- type: 'category',
- // 使用 data 中的数据设为刻度文字
- data: titleArr,
- // 刻度设置
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- }
- }],
- // 控制y轴
- yAxis: [{
- // 使用数据的值设为刻度文字
- type: 'value',
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(0, 240, 255, 0.3)'
- }
- },
- }],
- // 控制x轴
- series: [
- {
- // series配置
- // 颜色
- itemStyle: {
- // 提供的工具函数生成渐变颜色
- color: new echarts.graphic.LinearGradient(
- // (x1,y2) 点到点 (x2,y2) 之间进行渐变
- 0, 0, 0, 1,
- [{
- offset: 0,
- color: '#00fffb'
- }, // 0 起始颜色
- {
- offset: 1,
- color: '#0061ce'
- } // 1 结束颜色
- ]
- )
- },
- // 图表数据名称
- name: '层次人数',
- // 图表类型
- type: 'bar',
- // 柱子宽度
- barWidth: '60%',
- // 数据
- data: countArr
- }
- ]
- };
- var myechart = echarts.init($('.talent_level')[0]);
- myechart.setOption(option);
- }
- function talent_industry(data) {
- let titleArr = [];
- let countArr = [];
- let total = 0;
- let count = data.length;
- // 中间省略的数据 准备三项
- var hiddenItem = {
- name: '',
- value: 10,
- // 柱子颜色
- itemStyle: {
- color: '#254065'
- },
- // 鼠标经过柱子颜色
- emphasis: {
- itemStyle: {
- color: '#254065'
- }
- },
- // 工具提示隐藏
- tooltip: {
- extraCssText: 'opacity:0'
- }
- };
- data.forEach((item, index) => {
- if (index < 7 || index + 7 >= count) {
- titleArr.push(item.name)
- countArr.push(item.count)
- } else if (count > 12 && index == 7) {
- //随机三个
- let arr = []
- for (let i = 7; i < count - 7; i++) {
- arr.push(i)
- }
- let randomArr = [];
- while (randomArr.length < 3) {
- let temp = (Math.random() * arr.length) >> 0;
- randomArr.push(arr.splice(temp, 1)[0]);
- }
- randomArr.forEach((randomIndex) => {
- titleArr.push(data[randomIndex].name)
- countArr.push(data[randomIndex].count)
- })
- }
- total += item.count
- });
- $('.talent_industry-count').text(count)
- $('.talent_industry-total').text(total)
- option = {
- // 工具提示
- tooltip: {
- // 触发类型 经过轴触发axis 经过轴触发item
- trigger: 'item',
- // 轴触发提示才有效
- axisPointer: {
- // 默认为直线,可选为:'line' 线效果 | 'shadow' 阴影效果
- type: 'shadow'
- }
- },
- // 图表边界控制
- grid: {
- // 距离 上右下左 的距离
- left: '0',
- right: '3%',
- bottom: '3%',
- top: '5%',
- // 大小是否包含文本【类似于boxsizing】
- containLabel: true,
- //显示边框
- show: true,
- //边框颜色
- borderColor: 'rgba(0, 240, 255, 0.3)'
- },
- // 控制x轴
- xAxis: [{
- // 使用类目,必须有data属性
- type: 'category',
- // 使用 data 中的数据设为刻度文字
- data: titleArr,
- // 刻度设置
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- }
- }],
- // 控制y轴
- yAxis: [{
- // 使用数据的值设为刻度文字
- type: 'value',
- axisTick: {
- // true意思:图形在刻度中间
- // false意思:图形在刻度之间
- alignWithLabel: false,
- show: false
- },
- //文字
- axisLabel: {
- color: '#4c9bfd'
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(0, 240, 255, 0.3)'
- }
- },
- }],
- // 控制x轴
- series: [
- {
- // series配置
- // 颜色
- itemStyle: {
- // 提供的工具函数生成渐变颜色
- color: new echarts.graphic.LinearGradient(
- // (x1,y2) 点到点 (x2,y2) 之间进行渐变
- 0, 0, 0, 1,
- [{
- offset: 0,
- color: '#00fffb'
- }, // 0 起始颜色
- {
- offset: 1,
- color: '#0061ce'
- } // 1 结束颜色
- ]
- )
- },
- // 图表数据名称
- name: '行业人数',
- // 图表类型
- type: 'bar',
- // 柱子宽度
- barWidth: '60%',
- // 数据
- data: countArr
- }
- ]
- };
- var myechart = echarts.init($('.talent_industry')[0]);
- myechart.setOption(option);
- }
|