KindergartenUI/src/views/system/survey/index.vue

526 lines
15 KiB
Vue
Raw Normal View History

2022-08-22 09:05:11 +08:00
<template>
<div class="app-container">
<el-form
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="90px"
>
2022-08-30 17:44:03 +08:00
<kindergarten
@kinbatlist="kinbatlist"
style="width: 500px; display: inline"
></kindergarten>
<el-form-item>
2022-08-22 09:05:11 +08:00
<el-button
2022-08-30 17:44:03 +08:00
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>查看</el-button
2022-08-22 09:05:11 +08:00
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-row v-show="itemshow">
2022-08-30 17:44:03 +08:00
<div>
<div style="display: flex; margin-top: 20px">
<div style="width: 50%">
<div slot="header" class="header">
<span>班级综合体测成绩排名</span>
</div>
<div v-if="yclassname1.length != 0" style="position: relative">
<div class="title">大班</div>
<div
id="main"
style="width: 500px; height: 300px; margin: 0 auto"
></div>
</div>
<div v-if="yclassname2.length != 0" style="position: relative">
<div class="title">中班</div>
<div
id="main2"
style="width: 500px; height: 300px; margin: 0 auto"
></div>
</div>
<div v-if="yclassname3.length != 0" style="position: relative">
<div class="title">小班</div>
<div
id="main3"
style="width: 500px; height: 300px; margin: 0 auto"
></div>
</div>
</div>
<div style="width: 50%">
<div slot="header" class="header" style="margin-bottom: 40px">
<span>全国优秀幼儿榜(TOP10)</span>
</div>
<el-table
ref="singleTable"
:data="studentlist"
highlight-current-row
style="margin: 0 auto; width: 530px"
2022-08-24 17:38:47 +08:00
>
2022-08-30 17:44:03 +08:00
<el-table-column
type="index"
width="130"
label="排名"
align="center"
>
</el-table-column>
<el-table-column
property="studentName"
label="姓名"
width="130"
align="center"
>
</el-table-column>
<el-table-column
property="className"
label="班级"
width="130"
align="center"
>
</el-table-column>
<el-table-column
property="itemFraction"
label="分数"
width="140"
align="center"
>
</el-table-column>
</el-table>
</div>
2022-08-24 17:38:47 +08:00
</div>
</div>
2022-08-22 09:05:11 +08:00
</el-row>
<el-row :gutter="20" v-if="itemshow2">
<el-col :span="24" :offset="0">
<el-card>
<div slot="header" style="text-align: center">
<img style="width: 40px" src="@/icons/笑脸.png" alt="" />
2022-08-26 14:06:36 +08:00
<div><!-- card title -->该幼儿园此批次暂无数据</div>
2022-08-22 09:05:11 +08:00
</div>
<!-- card body -->
</el-card>
</el-col>
</el-row>
</div>
</template>
<script>
import * as echarts from "echarts";
2022-08-30 17:44:03 +08:00
import { getRoleInfo } from "@/api/system/quality";
2022-08-22 09:05:11 +08:00
import { StudentList, ClassList } from "@/api/system/survey";
2022-08-30 17:44:03 +08:00
import Kindergarten from "../../assembly/kindergarten.vue";
2022-08-22 09:05:11 +08:00
export default {
name: "KindergartenPhysicalTest",
2022-08-30 17:44:03 +08:00
components: { Kindergarten },
2022-08-22 09:05:11 +08:00
data() {
return {
itemshow: false,
itemshow2: false,
// 显示搜索条件
showSearch: true,
studentlist: [],
//查询传值
classqueryParams: {
2022-08-23 17:44:36 +08:00
kindergartenId: "",
batchCode: "",
2022-08-22 09:05:11 +08:00
pageNum: 1,
pageSize: 10,
2022-08-31 15:29:30 +08:00
// kindergartenId: "2",
// batchCode: "PC202208260011",
2022-08-22 09:05:11 +08:00
},
studentlistqueryParams: {
2022-08-23 17:44:36 +08:00
kindergartenId: "",
batchCode: "",
2022-08-22 09:05:11 +08:00
pageNum: 1,
pageSize: 10,
2022-08-31 15:29:30 +08:00
// kindergartenId: "2",
// batchCode: "PC202208260011",
2022-08-22 09:05:11 +08:00
},
LARGECLASS: "LARGE_CLASS",
MIDDLECLASS: "MIDDLE_CLASS",
SMALLCLASS: "SMALL_CLASS",
yclassname1: [],
yclassname2: [],
yclassname3: [],
2022-08-24 17:38:47 +08:00
classscore1: [],
classscore2: [],
classscore3: [],
2022-08-22 09:05:11 +08:00
};
},
mounted() {},
created() {
2022-08-23 17:44:36 +08:00
// this.StudentListinfo();
// this.ClassListinfo();
2022-08-22 09:05:11 +08:00
},
methods: {
2022-08-30 17:44:03 +08:00
handleQuery() {
this.StudentListinfo();
this.ClassListinfo();
},
kinbatlist(kindergartenId, batchCode) {
console.log(kindergartenId, batchCode);
this.studentlistqueryParams.kindergartenId = kindergartenId;
this.studentlistqueryParams.batchCode = batchCode;
this.classqueryParams.kindergartenId = kindergartenId;
this.classqueryParams.batchCode = batchCode;
},
2022-08-22 09:05:11 +08:00
ClassListinfo() {
ClassList(this.classqueryParams).then((res) => {
2022-08-24 17:38:47 +08:00
if (res.rows.length == 0) {
2022-08-23 17:44:36 +08:00
this.itemshow2 = true;
this.itemshow = false;
} else {
2022-08-30 17:44:03 +08:00
this.yclassname1 = [];
this.yclassname2 = [];
this.yclassname3 = [];
this.classscore1 = [];
this.classscore2 = [];
this.classscore3 = [];
res.rows.forEach((e) => {
if (e.classType == this.LARGECLASS) {
this.yclassname1.push(e.className);
if (
e.itemScoreAll == "" ||
!e.itemScoreAll ||
e.itemScoreAll == null
) {
this.classscore1.push(0);
} else {
this.classscore1.push(e.itemScoreAll);
2022-08-23 17:44:36 +08:00
}
2022-08-30 17:44:03 +08:00
} else if (e.classType == this.MIDDLECLASS) {
this.yclassname2.push(e.className);
if (
e.itemScoreAll == "" ||
!e.itemScoreAll ||
e.itemScoreAll == null
) {
this.classscore2.push(0);
} else {
this.classscore2.push(e.itemScoreAll);
}
} else if (e.classType == this.SMALLCLASS) {
this.yclassname3.push(e.className);
if (
e.itemScoreAll == "" ||
!e.itemScoreAll ||
e.itemScoreAll == null
) {
this.classscore3.push(0);
} else {
this.classscore3.push(e.itemScoreAll);
}
}
});
console.log(this.yclassname3, this.yclassname2);
this.$nextTick((e) => {
2022-08-24 17:38:47 +08:00
if (this.yclassname1.length != 0) {
var myChart = echarts.init(document.getElementById("main"));
2022-08-22 09:05:11 +08:00
}
2022-08-24 17:38:47 +08:00
if (this.yclassname2.length != 0) {
var myChart2 = echarts.init(document.getElementById("main2"));
}
if (this.yclassname3.length != 0) {
var myChart3 = echarts.init(document.getElementById("main3"));
}
2022-08-30 17:44:03 +08:00
// var myChart = echarts.init(document.getElementById("main"));
// var myChart2 = echarts.init(document.getElementById("main2"));
// var myChart3 = echarts.init(document.getElementById("main3"));
2022-08-24 17:38:47 +08:00
var app = {};
var option;
var option2;
var option3;
const posList = [
"left",
"right",
"top",
"bottom",
"inside",
"insideTop",
"insideLeft",
"insideRight",
"insideBottom",
"insideTopLeft",
"insideTopRight",
"insideBottomLeft",
"insideBottomRight",
];
app.configParameters = {
rotate: {
min: 0,
max: 90,
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
align: {
options: {
left: "left",
center: "center",
right: "right",
2022-08-23 17:44:36 +08:00
},
},
2022-08-24 17:38:47 +08:00
verticalAlign: {
options: {
top: "top",
middle: "middle",
bottom: "bottom",
},
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
position: {
options: posList.reduce(function (map, pos) {
map[pos] = pos;
return map;
}, {}),
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
distance: {
min: 0,
max: 100,
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
};
app.config = {
rotate: 0,
align: "center",
verticalAlign: "middle",
position: "top",
distance: 15,
onChange: function () {
const labelOption = {
rotate: app.config.rotate,
align: app.config.align,
verticalAlign: app.config.verticalAlign,
position: app.config.position,
distance: app.config.distance,
};
myChart.setOption({
series: [
{
label: labelOption,
},
{
label: labelOption,
},
{
label: labelOption,
},
{
label: labelOption,
},
],
});
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
};
const labelOption = {
show: true,
position: app.config.position,
distance: app.config.distance,
align: app.config.align,
verticalAlign: app.config.verticalAlign,
rotate: app.config.rotate,
formatter: "{c}",
fontSize: 16,
rich: {
name: {},
2022-08-22 09:05:11 +08:00
},
2022-08-24 17:38:47 +08:00
};
option = {
tooltip: {
trigger: "axis",
axisPointer: {
type: "shadow",
},
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
legend: {},
xAxis: [
{
type: "category",
axisTick: { show: false },
data: this.yclassname1,
},
],
yAxis: [
{
type: "value",
},
],
series: [
{
type: "bar",
2022-08-30 17:44:03 +08:00
barWidth: 35,
2022-08-24 17:38:47 +08:00
barGap: 0,
color: "#00B050",
label: labelOption,
emphasis: {
focus: "series",
},
data: this.classscore1,
},
],
};
option2 = {
tooltip: {
trigger: "axis",
axisPointer: {
type: "shadow",
},
2022-08-23 17:44:36 +08:00
},
2022-08-24 17:38:47 +08:00
legend: {},
xAxis: [
{
type: "category",
axisTick: { show: false },
data: this.yclassname2,
},
],
yAxis: [
{
type: "value",
},
],
series: [
{
type: "bar",
barGap: 0,
2022-08-30 17:44:03 +08:00
barWidth: 35,
2022-08-24 17:38:47 +08:00
color: "#00B050",
label: labelOption,
emphasis: {
focus: "series",
},
data: this.classscore2,
},
],
};
option3 = {
tooltip: {
trigger: "axis",
axisPointer: {
type: "shadow",
2022-08-23 17:44:36 +08:00
},
},
2022-08-24 17:38:47 +08:00
legend: {},
xAxis: [
{
type: "category",
axisTick: { show: false },
data: this.yclassname3,
},
],
yAxis: [
{
type: "value",
},
],
series: [
{
type: "bar",
barGap: 0,
2022-08-30 17:44:03 +08:00
barWidth: 35,
2022-08-24 17:38:47 +08:00
color: "#00B050",
label: labelOption,
emphasis: {
focus: "series",
},
data: this.classscore3,
},
],
};
2022-08-22 09:05:11 +08:00
2022-08-24 17:38:47 +08:00
if (this.yclassname1.length != 0) {
option && myChart.setOption(option);
}
if (this.yclassname2.length != 0) {
option2 && myChart2.setOption(option2);
}
if (this.yclassname3.length != 0) {
option3 && myChart3.setOption(option3);
}
// option && myChart.setOption(option);
// option2 && myChart2.setOption(option2);
// option3 && myChart3.setOption(option3);
this.itemshow = true;
this.itemshow2 = false;
});
2022-08-23 17:44:36 +08:00
}
2022-08-22 09:05:11 +08:00
});
},
StudentListinfo() {
StudentList(this.studentlistqueryParams).then((res) => {
2022-08-25 14:24:37 +08:00
if (res.rows.length == 0) {
2022-08-23 17:44:36 +08:00
this.itemshow2 = true;
this.itemshow = false;
} else {
this.studentlist = res.rows;
this.itemshow2 = false;
this.itemshow = true;
}
2022-08-22 09:05:11 +08:00
});
},
getList() {
//用户权限
getRoleInfo().then((res) => {
2022-08-23 17:44:36 +08:00
var user = res.data.roleKeys;
if (user.includes("enchou")) {
return;
} else if (user.includes("teacher")) {
return;
} else if (user.includes("parent")) {
return;
}
2022-08-22 09:05:11 +08:00
});
},
// 表单重置
reset() {
this.form = {};
this.resetForm("form");
},
},
};
</script>
<style scoped='scss'>
2022-08-31 15:29:30 +08:00
.text {
font-size: 12px;
position: absolute;
left: 19%;
top: 10%;
}
2022-08-30 17:44:03 +08:00
.header {
text-align: center;
font-size: 18px;
width: 380px;
height: 45px;
line-height: 45px;
margin: 0 auto;
background-color: #f0f0f0;
border-radius: 25px;
}
.title {
width: 70px;
background-color: #00d1da;
color: #fff;
line-height: 25px;
height: 25px;
font-size: 14px;
text-align: center;
border-radius: 15px;
position: absolute;
2022-08-31 15:29:30 +08:00
left: 7%;
top: 8%;
2022-08-30 17:44:03 +08:00
}
2022-08-22 09:05:11 +08:00
::v-deep .el-card__header {
border: none;
}
2022-08-30 17:44:03 +08:00
::v-deep .el-form {
display: inline;
}
2022-08-22 09:05:11 +08:00
</style>