四级可视化分析1.1

This commit is contained in:
Cool 2024-04-10 21:34:49 +08:00
parent 171dc8f3f6
commit 9d1b7cc623
5 changed files with 443 additions and 35 deletions

View File

@ -246,7 +246,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
// authenticationScheme: 'Bearer', // authenticationScheme: 'Bearer',
authenticationScheme: '', authenticationScheme: '',
//接口超时设置 //接口超时设置
timeout: 10 * 1000, timeout: 15 * 1000,
// 基础接口地址 // 基础接口地址
// baseURL: globSetting.apiUrl, // baseURL: globSetting.apiUrl,
headers: { 'Content-Type': ContentTypeEnum.JSON }, headers: { 'Content-Type': ContentTypeEnum.JSON },

View File

@ -1,11 +1,11 @@
<template> <template>
<div style="background: #ececec; padding: 25px"> <div style="background: #ececec; padding: 15px">
<a-card title="按学院 / 专业分析" :loading="loading" :bordered="false"> <a-card title="按学院 / 专业分析" :loading="loading" :bordered="false">
<template #extra> <template #extra>
<a-select v-model:value="college" style="width: 300px" :options="collegeOptions"></a-select> <a-select v-model:value="college" style="width: 300px" mode="multiple" :max-tag-count="2" :options="collegeOptions" @change="onCollegeMajorChange"></a-select>
<!-- <a-select v-model:value="batch" style="margin-left: 10px;width: 120px" :options="batchOptions"></a-select> --> <!-- <a-select v-model:value="batch" style="margin-left: 10px;width: 120px" :options="batchOptions"></a-select> -->
<!-- <a-select v-model:value="level" style="margin-left: 10px;width: 120px" :options="levelOptions"></a-select> --> <!-- <a-select v-model:value="level" style="margin-left: 10px;width: 120px" :options="levelOptions"></a-select> -->
<a-select v-model:value="entrydate" style="margin-left: 10px;width: 100px" <a-select v-model:value="entrydate" style="margin-left: 10px;width: 150px"
:options="entrydateOptions"></a-select> :options="entrydateOptions"></a-select>
<a-button style="margin-left: 10px;" type="primary" @click="query">查询</a-button> <a-button style="margin-left: 10px;" type="primary" @click="query">查询</a-button>
</template> </template>
@ -32,7 +32,7 @@ export default {
getBatch: '/cet/getBatch', getBatch: '/cet/getBatch',
getEntrydate: '/cet/getEntrydate', getEntrydate: '/cet/getEntrydate',
getCollege: '/cet/getCollege', getCollege: '/cet/getCollege',
getRate: '/cet/getRateByBatch' getRate: '/cet/getRateByCollege'
}, },
loading: false, loading: false,
collegeOptions: [], collegeOptions: [],
@ -55,8 +55,34 @@ export default {
this.collegeOptions = res.colleges; this.collegeOptions = res.colleges;
// //
this.collegeOptions.unshift({ value: '全校', label: '全校' }); this.collegeOptions.unshift({ value: '全校', label: '全校' });
this.college = this.collegeOptions[0].value; this.collegeOptions.forEach(option => {
if (option.value !== '全校') {
option.disabled = true;
}
}); });
this.college = ['全校'];
});
},
onCollegeMajorChange(value) {
if (value.includes('全校')) {
this.collegeOptions.forEach(option => {
if (option.value !== '全校') {
option.disabled = true;
}
});
}else{
this.collegeOptions.forEach(option => {
option.disabled = false;
if (value!=='全校'&&option.value === '全校') {
option.disabled = true;
}
if(value.length===0){
option.disabled = false;
}
});
}
console.log(value);
}, },
dataChart(data) { dataChart(data) {
let xData = []; let xData = [];
@ -66,6 +92,8 @@ export default {
// % // %
yData.push(data[key].passRate); yData.push(data[key].passRate);
} }
let rankData = yData.slice().sort((a, b) => b - a).map((value) => yData.indexOf(value) + 1);
xData = xData.map(label => label.split("").join("\n"));//x
let myChart = echarts.init(document.getElementById("map1")); let myChart = echarts.init(document.getElementById("map1"));
// //
let option = { let option = {
@ -76,12 +104,19 @@ export default {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {
type: 'shadow' type: 'shadow'
},
formatter: function (params) {
return params[0].name + '<br/>' +
'<table>' +
'<tr><td>' + params[0].marker + params[0].seriesName + '</td><td style="font-weight: bold;">'+'&nbsp;&nbsp;&nbsp;&nbsp;' + params[0].value + '%' + '</td></tr>' +
'<tr><td>' + params[1].marker + params[1].seriesName + '</td><td style="font-weight: bold;">'+'&nbsp;&nbsp;&nbsp;&nbsp;' + params[1].value + '</td></tr>' +
'</table>';
} }
}, },
toolbox: { toolbox: {
show: true, show: true,
feature: { feature: {
dataView: { show: true, readOnly: false },
magicType: { show: true, type: ['line', 'bar'] }, magicType: { show: true, type: ['line', 'bar'] },
restore: { show: true }, restore: { show: true },
saveAsImage: { show: true } saveAsImage: { show: true }
@ -98,14 +133,23 @@ export default {
type: 'category', type: 'category',
data: xData, data: xData,
axisLabel: { axisLabel: {
interval: 1,//x interval: 0,//x
rotate: -20,//30 rotate: 0,//0
} }
} }
], ],
yAxis: [ yAxis: [
{ {
type: 'value' type: 'value',
name: '通过率',
axisLabel: {
formatter: '{value} %'
}
},
{
type: 'value',
name: '排名',
show: false,
} }
], ],
series: [ series: [
@ -122,11 +166,24 @@ export default {
textStyle: { // textStyle: { //
color: 'black', color: 'black',
fontSize: 13 fontSize: 13
},
formatter: '{c}%'
} }
} }
} },
} yAxisIndex: 0,
} },
{
name: '排名',
type: 'bar',
data: rankData,
label: {
show: false,
position: 'inside',
formatter: '{c}',
},
yAxisIndex: 1,
},
] ]
}; };
// 使 // 使
@ -150,25 +207,27 @@ export default {
let result = null; let result = null;
console.log(this.college, this.entrydate); console.log(this.college, this.entrydate);
//this.collegethis.batchnull //this.collegethis.batchnull
if (!this.college) { if (this.college===null||this.college.length===0) {
this.college = '全校'; this.college = ['全校'];
} }
if (!this.entrydate) { if (!this.entrydate) {
this.entrydate = '2017'; this.entrydate = '2017';
} }
try { try {
this.loading = true; this.loading = true;
console.log(this.college, this.entrydate)
let params = { let params = {
college: this.college, college: this.college,
entrydate: this.entrydate, entrydate: this.entrydate,
level: 'cet4' level: 'cet4'
} }
result = await defHttp.get({ url: this.Url.getRate, params }); console.log(params.college,"college")
result = await defHttp.post({ url: this.Url.getRate, params });
//使passRate //使passRate
result.data.sort((a, b) => { result.data.sort((a, b) => {
return b.passRate - a.passRate; return b.passRate - a.passRate;
}); });
console.log("data",result.data); console.log("data", result.data);
} finally { } finally {
this.loading = false; this.loading = false;
this.$nextTick(() => { this.$nextTick(() => {

View File

@ -1,6 +1,6 @@
<template> <template>
<div style="background: #ececec; padding: 25px"> <div style="background: #ececec; padding: 15px">
<a-card title="按批次分析" :loading="loading" :bordered="false"> <a-card title="按批次对比分析" :loading="loading" :bordered="false">
<template #extra> <template #extra>
<!-- <a-select v-model:value="college" style="width: 300px" :options="collegeOptions"></a-select> --> <!-- <a-select v-model:value="college" style="width: 300px" :options="collegeOptions"></a-select> -->
<a-cascader v-model:value="collegeMajor" :options="collegeMajorOptions" change-on-select /> <a-cascader v-model:value="collegeMajor" :options="collegeMajorOptions" change-on-select />
@ -30,7 +30,7 @@ export default {
Url: { Url: {
getBatch: '/cet/getBatch', getBatch: '/cet/getBatch',
getCollege: '/cet/getCollege', getCollege: '/cet/getCollege',
getRate: '/cet/getRateByCollege', getRate: '/cet/getRateByAllBatch',
getCollegeMajor: '/cet/getCollegeMajor' getCollegeMajor: '/cet/getCollegeMajor'
}, },
loading: false, loading: false,
@ -54,7 +54,7 @@ export default {
for (let key in data) { for (let key in data) {
xData.push(key); xData.push(key);
// % // %
yData.push((data[key] * 100).toFixed(2)); yData.push((data[key]).toFixed(1));
} }
let myChart = echarts.init(document.getElementById("map1")); let myChart = echarts.init(document.getElementById("map1"));
// //
@ -66,18 +66,29 @@ export default {
type: 'category', type: 'category',
data: xData, data: xData,
axisLabel: { axisLabel: {
interval:0,//x interval: 0,//x
rotate:-20,//30 rotate: -20,//30
} }
}, },
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {
type: 'shadow' type: 'shadow'
},
formatter: function (params) {
return params[0].name + '<br/>' +
'<table>' +
'<tr><td>' + params[0].marker + '</td><td style="font-weight: bold;">' + '&nbsp;&nbsp;&nbsp;&nbsp;' + params[0].value + '%' + '</td></tr>' +
'<tr>'
+ '</table>';
} }
}, },
yAxis: { yAxis: {
type: 'value' type: 'value',
name: '通过率',
axisLabel: {
formatter: '{value} %'
}
}, },
series: [ series: [
{ {
@ -91,7 +102,8 @@ export default {
textStyle: { // textStyle: { //
color: 'black', color: 'black',
fontSize: 12 fontSize: 12
} },
formatter: '{c}%',
} }
} }
} }

212
src/views/cet/cet-ana-3.vue Normal file
View File

@ -0,0 +1,212 @@
<template>
<div style="background: #ececec; padding: 15px">
<a-card title="按批次对比分析" :loading="loading" :bordered="false">
<template #extra>
<a-select v-model:value="collegeMajor" style="width: 300px" :options="collegeMajorOptions" ></a-select>
<a-select v-model:value="batch" :options="batchOptions" change-on-select style="margin-left: 10px;width: 100px" />
<a-button style="margin-left: 10px;" type="primary" @click="query">查询</a-button>
</template>
<div>
<a-row :gutter="24">
<a-col :xl="24" :style="{ marginBottom: '24px' }">
<div class="container">
<div id="map1" style="width: 100%; height: 400px;"></div>
</div>
</a-col>
</a-row>
</div>
</a-card>
</div>
</template>
<script>
import { defHttp } from '/@/utils/http/axios';
import * as echarts from 'echarts';
export default {
name: "Analysis",
data() {
return {
Url: {
getBatch: '/cet/getBatch',
getCollege: '/cet/getCollege',
getRate: '/cet/getRateByBatch',
getCollegeMajor: '/cet/getCollegeMajor'
},
loading: false,
collegeOptions: [],
collegeMajorOptions: [],
batchOptions: [],
levelOptions: [
{ value: 'cet4', label: '英语四级' },
{ value: 'cet6', label: '英语六级' }
],
level: null,
college: null,
batch: null,
collegeMajor: null
};
},
methods: {
dataChart(data) {
let xData = [];
let yData = [];
console.log(data,"data")
for (let key in data) {
xData.push(key);
// %
yData.push((data[key]).toFixed(1));
}
let myChart = echarts.init(document.getElementById("map1"));
//
let option = {
title: {
text: "学院 / 专业通过率变化",
},
xAxis: {
type: 'category',
data: xData,
axisLabel: {
interval: 0,//x
rotate: -20,//30
}
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
},
formatter: function (params) {
return params[0].name + '<br/>' +
'<table>' +
'<tr><td>' + params[0].marker + '</td><td style="font-weight: bold;">' + '&nbsp;&nbsp;&nbsp;&nbsp;' + params[0].value + '%' + '</td></tr>' +
'<tr>'
+ '</table>';
}
},
yAxis: {
type: 'value',
name: '通过率',
axisLabel: {
formatter: '{value} %'
}
},
series: [
{
data: yData,
type: 'line',
itemStyle: {
normal: {
label: {
show: true, //
position: 'top', //
textStyle: { //
color: 'black',
fontSize: 12
},
formatter: '{c}%',
}
}
}
}
]
};
// 使
myChart.setOption(option);
},
//
async getBatch() {
const getBatch = await defHttp.get({ url: this.Url.getBatch });
this.batchOptions = getBatch.batches.map(item => {
return {
value: item.value,
label: item.label
}
});
// const getCollege = await defHttp.get({ url: this.Url.getCollege });
// this.collegeOptions = getCollege.colleges;
// this.college = this.collegeOptions[0].value;
this.level = this.levelOptions[0].value;
// this.query();
},
//
async getCollegeMajorData() {
const res = await defHttp.get({ url: this.Url.getCollegeMajor });
//map
this.collegeMajorOptions = res.collegeMajor.map(item => {
return {
value: item.college,
label: item.college,
children: item.major.map(major => {
return {
value: major,
label: major
}
})
}
});
this.collegeMajorOptions.unshift({ value: '全校', label: '全校' });
this.collegeMajor = this.collegeMajorOptions[0].value;
console.log(this.collegeMajor)
console.log(this.collegeMajorOptions);
},
//
async query() {
let data = null;
try {
console.log("sb", this.batch);
//this.batchnull
if (!this.batch) {
this.batch = '2017-12-01';
}
if (!this.collegeMajor) {
this.collegeMajor = '全校';
}
//this.batch[1]null
let major = this.batch.length > 1 ? this.batch[1] : "";
this.loading = true;
let params = {
batch: this.batch,
college: this.collegeMajor,
level: 'cet4',
}
console.log("params", params);
data = await defHttp.get({ url: this.Url.getRate, params });
} finally {
this.loading = false;
this.$nextTick(() => {
this.dataChart(data);
})
}
}
},
mounted() {
this.getCollegeMajorData();
this.getBatch();
this.query();
}
}
</script>
<style lang="less" scoped>
.container {
display: flex;
background-color: #fff;
padding: 15px;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.title {
font-size: 34px;
color: rgb(8, 8, 8);
font-weight: bold;
}
</style>

View File

@ -1,5 +1,5 @@
<template> <template>
<div style="background: #ececec; padding: 25px"> <div style="background: #ececec; padding: 15px">
<a-card title="四级总通过率查询" :loading="loading" :bordered="false"> <a-card title="四级总通过率查询" :loading="loading" :bordered="false">
<template #extra> <template #extra>
<a-cascader v-model:value="collegeMajor" :options="collegeMajorOptions" change-on-select /> <a-cascader v-model:value="collegeMajor" :options="collegeMajorOptions" change-on-select />
@ -9,7 +9,7 @@
<!-- <a-button @click=test()>test</a-button> --> <!-- <a-button @click=test()>test</a-button> -->
</template> </template>
<a-row :gutter="24"> <a-row :gutter="24">
<a-col :xl="14"> <a-col :xl="13">
<div style="padding-left: 10px;min-height: 400px;"> <div style="padding-left: 10px;min-height: 400px;">
<a-table :dataSource="dataSourceCet4" :columns="columns" :pagination='false' bordered> <a-table :dataSource="dataSourceCet4" :columns="columns" :pagination='false' bordered>
<template v-slot:passRateSlot> <template v-slot:passRateSlot>
@ -22,9 +22,18 @@
<span style="font-size: 15px;float: right;margin-top: 10px;" v-if="total && total > 0"> <span style="font-size: 15px;float: right;margin-top: 10px;" v-if="total && total > 0">
学院 / 专业总人数: {{ total }} 学院 / 专业总人数: {{ total }}
</span> </span>
</div>
</a-col>
<a-col :xl="11">
<div style="width: 100%;height: 500px;padding: 10px;" class="piechart" id="piechart">
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
<!-- <div style="height: 300px;">
<a-empty style="margin-top: 100px" />
</div> -->
</a-card> </a-card>
</div> </div>
</template> </template>
@ -45,16 +54,18 @@ export default {
dataIndex: 'grade', dataIndex: 'grade',
key: 'grade', key: 'grade',
align: 'center', align: 'center',
customCell: (_, index) => ({
rowSpan: index % 2 === 0 ? 2 : 0,
}),
}, },
{ {
title: '考试批次', title: '考试批次',
dataIndex: 'batch', dataIndex: 'batch',
key: 'batch', key: 'batch',
align: 'center', align: 'center',
//
}, },
{ {
title: '参加人数', title: '参加人数',
dataIndex: 'attendNumber', dataIndex: 'attendNumber',
key: 'attendNumber', key: 'attendNumber',
align: 'center', align: 'center',
@ -66,10 +77,19 @@ export default {
align: 'center', align: 'center',
}, },
{ {
slots: { title: 'passRateSlot' }, title: '本批次通过率',
dataIndex: 'passRate', dataIndex: 'batchpassrate',
key: 'passRate', key: 'batchpassrate',
align: 'center', align: 'center',
},
{
slots: { title: 'passRateSlot' },
dataIndex: 'gradepassrate',
key: 'gradepassrate',
align: 'center',
customCell: (_, index) => ({
rowSpan: index % 2 === 0 ? 2 : 0,
}),
} }
], ],
Url: { Url: {
@ -122,6 +142,7 @@ export default {
this.collegeMajor = ['全校']; this.collegeMajor = ['全校'];
console.log(this.collegeMajorOptions); console.log(this.collegeMajorOptions);
}, },
// //
async query() { async query() {
try { try {
@ -136,15 +157,118 @@ export default {
} }
console.log("params", params); console.log("params", params);
const result = await defHttp.get({ url: this.Url.getData, params }); const result = await defHttp.get({ url: this.Url.getData, params });
this.dataSourceCet4 = result.cet4; let tableData = [];
this.total = result.total; let piedata = [];
let passrate = 0;
let index = 0;
for (let grade in result.cet4) {
result.cet4[grade].forEach(item => {
if (index % 2 == 0) {
piedata.push({ value: parseFloat(item.gradepassrate - passrate).toFixed(3), name: grade + "时通过" });
passrate = parseFloat(item.gradepassrate).toFixed(3);
}
index++
tableData.push({
grade: grade,
attendNumber: item.attendNumber,
batch: item.batch,
gradepassrate: item.gradepassrate,
passNumber: item.passNumber,
batchpassrate: item.batchpassrate
});
});
}
console.log("tableData", tableData);
this.dataSourceCet4 = tableData;
this.total = result.total;
piedata.push({ value: (1 - passrate).toFixed(3), name: '未通过' });
setTimeout(() => {
this.drawPieChart(piedata);
}, 100);
// this.drawPieChart();
} finally { } finally {
this.loading = false; this.loading = false;
} }
}, },
test() { test() {
defHttp.get({ url: "/cet/getTest" }); defHttp.get({ url: "/cet/getTest" });
},
renderGrade(record, index) {
console.log(record, "record", index, "index");
console.log(record.grade)
if (index % 2 == 0) {
return {
children: record.grade,
attrs: {
rowSpan: 2
}
}
} else {
return {
children: record.grade,
attrs: {
rowSpan: 0
}
}
}
},
drawPieChart(piedata) {
let myChart = echarts.init(document.getElementById('piechart'));
let option = {
tooltip: {
trigger: 'item',
confine: false,
},
title: {
text: '四级通过率分析',
left: 'left',
top: '0%',
textStyle: {
fontSize: 20
}
},
legend: {
top: '5%',
left: 'center'
},
series: [
{
name: '四级通过率',
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
// label: {
// show: false,
// position: 'center'
// },
emphasis: {
label: {
show: true,
fontSize: 20,
fontWeight: 'bold'
}
},
// labelLine: {
// show: false
// },
data: piedata
}
]
};
myChart.setOption(option);
} }
}, },
mounted() { mounted() {
@ -152,6 +276,7 @@ export default {
this.getCollegeMajorData(); this.getCollegeMajorData();
} }
} }
</script> </script>