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-29 11:51:56 +08:00
|
|
|
<el-form-item label="所属幼儿园" prop="categoryName" v-if="showyey">
|
2022-08-22 09:05:11 +08:00
|
|
|
<el-button
|
|
|
|
|
@click="kindergartenshow = true"
|
|
|
|
|
v-if="kindergartenName == '请选择幼儿园'"
|
|
|
|
|
style="width: 250px; text-align: left; height: 32px; color: #c0c4cc"
|
|
|
|
|
>{{ kindergartenName }}</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
@click="kindergartenshow = true"
|
|
|
|
|
style="width: 250px; text-align: left; height: 32px"
|
|
|
|
|
v-else
|
|
|
|
|
>{{ kindergartenName }}</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="所属批次" prop="categoryName" label-width="70px">
|
|
|
|
|
<el-button
|
|
|
|
|
@click="batchCodeshowclick"
|
|
|
|
|
style="width: 250px; text-align: left; height: 32px; color: #c0c4cc"
|
|
|
|
|
v-if="batchCodeName == '请选择批次'"
|
|
|
|
|
>{{ batchCodeName }}</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
@click="batchCodeshowclick"
|
|
|
|
|
style="width: 250px; text-align: left; height: 32px"
|
|
|
|
|
v-else
|
|
|
|
|
>{{ batchCodeName }}</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<right-toolbar
|
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
@queryTable="getList"
|
|
|
|
|
></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<!-- //批次 -->
|
|
|
|
|
<el-dialog
|
2022-08-26 14:06:36 +08:00
|
|
|
width="590px"
|
2022-08-22 09:05:11 +08:00
|
|
|
title="选择批次"
|
|
|
|
|
:visible.sync="batchCodeshow"
|
|
|
|
|
append-to-body
|
|
|
|
|
style="margin-top: 20px"
|
|
|
|
|
:before-close="batchCodecancel"
|
|
|
|
|
>
|
|
|
|
|
<el-table :data="testScorelist" align="center" style="margin-top: 0px">
|
2022-08-26 14:06:36 +08:00
|
|
|
<el-table-column label="请选择" width="100" align="center">
|
2022-08-22 09:05:11 +08:00
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
style="width: 20px; height: 20px"
|
|
|
|
|
v-if="batchCodeId == scope.row.id"
|
|
|
|
|
circle
|
|
|
|
|
@click="batchCodeclick(scope.row)"
|
|
|
|
|
></el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
v-else
|
|
|
|
|
style="width: 15px; height: 15px"
|
|
|
|
|
circle
|
|
|
|
|
@click="batchCodeclick(scope.row)"
|
|
|
|
|
></el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="batchCode"
|
|
|
|
|
label="批次编号"
|
2022-08-26 14:06:36 +08:00
|
|
|
width="200"
|
2022-08-22 09:05:11 +08:00
|
|
|
align="center"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="batchName"
|
|
|
|
|
label="批次名称"
|
2022-08-26 14:06:36 +08:00
|
|
|
width="200"
|
2022-08-22 09:05:11 +08:00
|
|
|
align="center"
|
|
|
|
|
/>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total4 > 0"
|
|
|
|
|
:total="total4"
|
|
|
|
|
:page.sync="testqueryParams.pageNum"
|
|
|
|
|
:limit.sync="testqueryParams.pageSize"
|
|
|
|
|
@pagination="testScore"
|
|
|
|
|
/>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- //幼儿园 -->
|
|
|
|
|
<el-dialog
|
|
|
|
|
width="850px"
|
|
|
|
|
title="选择所属幼儿园"
|
|
|
|
|
:visible.sync="kindergartenshow"
|
|
|
|
|
append-to-body
|
|
|
|
|
:before-close="kindergartencancel"
|
|
|
|
|
>
|
|
|
|
|
<el-table :data="kindergartenList">
|
|
|
|
|
<el-table-column label="请选择" width="70" align="center">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
style="width: 15px; height: 15px"
|
|
|
|
|
circle
|
|
|
|
|
@click="kindergartenNameclick(scope.row)"
|
|
|
|
|
v-if="kindergartenId == scope.row.id"
|
|
|
|
|
></el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
v-else
|
|
|
|
|
style="width: 15px; height: 15px"
|
|
|
|
|
circle
|
|
|
|
|
@click="kindergartenNameclick(scope.row)"
|
|
|
|
|
></el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="kindergartenName"
|
|
|
|
|
label="幼儿园名字"
|
|
|
|
|
width="150"
|
|
|
|
|
align="center"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="kindergartenAddress"
|
|
|
|
|
label="幼儿园地址"
|
|
|
|
|
width="150"
|
|
|
|
|
align="center"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="幼儿园所在组织"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="organizeName"
|
|
|
|
|
width="150"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="contacts"
|
|
|
|
|
label="联系人"
|
|
|
|
|
width="150"
|
|
|
|
|
align="center"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
property="phone"
|
|
|
|
|
label="联系电话"
|
|
|
|
|
width="150"
|
|
|
|
|
align="center"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total1 > 0"
|
|
|
|
|
:total="total1"
|
|
|
|
|
:page.sync="kqueryParams.pageNum"
|
|
|
|
|
:limit.sync="kqueryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-row v-show="itemshow">
|
|
|
|
|
<el-col :span="24" class="card-box" style="">
|
|
|
|
|
<el-card>
|
|
|
|
|
<div style="display: flex; margin-top: 40px">
|
|
|
|
|
<div
|
|
|
|
|
slot="header"
|
|
|
|
|
style="width: 50%; text-align: center; font-size: 18px"
|
|
|
|
|
>
|
|
|
|
|
<span>各年级男/女平均身高(cm)</span>
|
|
|
|
|
<div
|
|
|
|
|
id="main"
|
|
|
|
|
style="
|
|
|
|
|
width: 500px;
|
|
|
|
|
height: 300px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
"
|
|
|
|
|
></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
slot="header"
|
|
|
|
|
style="width: 50%; text-align: center; font-size: 18px"
|
|
|
|
|
>
|
|
|
|
|
<span>各年级男/女平均体重(kg)</span>
|
|
|
|
|
<div
|
|
|
|
|
id="main2"
|
|
|
|
|
style="
|
|
|
|
|
width: 500px;
|
|
|
|
|
height: 300px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
"
|
|
|
|
|
></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
|
</el-col>
|
|
|
|
|
</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-23 11:12:00 +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";
|
|
|
|
|
import {
|
|
|
|
|
listKindergartenInfo,
|
|
|
|
|
tKindergartenInfo,
|
|
|
|
|
} from "@/api/system/kindergartenInfo";
|
|
|
|
|
import { getRoleInfo, testScoreBatch } from "@/api/system/quality";
|
|
|
|
|
import { analysis } from "@/api/system/heightAndWeight";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "KindergartenPhysicalTest",
|
|
|
|
|
components: {},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
itemshow: false,
|
|
|
|
|
itemshow2: false,
|
2022-08-29 11:51:56 +08:00
|
|
|
showyey: true,
|
2022-08-22 09:05:11 +08:00
|
|
|
total1: 0,
|
|
|
|
|
total4: 0,
|
|
|
|
|
//遮罩层
|
|
|
|
|
kindergartenshow: false,
|
|
|
|
|
batchCodeshow: false,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
//班级类型
|
|
|
|
|
kindergartenType: "kindergarten_type",
|
|
|
|
|
type: {},
|
|
|
|
|
type2: {},
|
|
|
|
|
//幼儿园查询参数
|
|
|
|
|
kqueryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
organizeId: null,
|
|
|
|
|
kindergartenName: null,
|
|
|
|
|
kindergartenAddress: null,
|
|
|
|
|
kindergartenType: null,
|
|
|
|
|
phone: null,
|
|
|
|
|
contacts: null,
|
|
|
|
|
},
|
|
|
|
|
//幼儿园list
|
|
|
|
|
kindergartenList: [],
|
|
|
|
|
//幼儿园名字
|
|
|
|
|
kindergartenName: "请选择幼儿园",
|
|
|
|
|
//幼儿园ID
|
|
|
|
|
kindergartenId: "",
|
|
|
|
|
//批次名称
|
|
|
|
|
batchCodeName: "请选择批次",
|
|
|
|
|
//批次ID
|
|
|
|
|
batchCodeId: "",
|
|
|
|
|
//批次list
|
|
|
|
|
testScorelist: [],
|
|
|
|
|
//批次编号
|
|
|
|
|
testqueryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
},
|
|
|
|
|
analysislist: [],
|
|
|
|
|
//查询传值
|
|
|
|
|
analysisqueryParams: {
|
2022-08-25 14:24:37 +08:00
|
|
|
kindergartenId: "",
|
|
|
|
|
batchCode: "",
|
|
|
|
|
// kindergartenId: "18",
|
|
|
|
|
// batchCode: "PC202208030005",
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// weightAndHeightAvgScoreList: [
|
|
|
|
|
// {
|
|
|
|
|
// studentSex: "FEMALE",
|
|
|
|
|
// measureUnit: "cm",
|
|
|
|
|
// itemCode: "H001",
|
|
|
|
|
// averageScore: 0,
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// studentSex: "FEMALE",
|
|
|
|
|
// measureUnit: "kg",
|
|
|
|
|
// itemCode: "W001",
|
|
|
|
|
// averageScore: 0,
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// studentSex: "MALE",
|
|
|
|
|
// measureUnit: "cm",
|
|
|
|
|
// itemCode: "H001",
|
|
|
|
|
// averageScore: 0,
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// studentSex: "MALE",
|
|
|
|
|
// measureUnit: "kg",
|
|
|
|
|
// itemCode: "W001",
|
|
|
|
|
// averageScore: 0,
|
|
|
|
|
// },
|
|
|
|
|
// ],
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
// this.analysisinfo();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
analysisinfo() {
|
|
|
|
|
analysis(this.analysisqueryParams).then((res) => {
|
2022-08-23 11:12:00 +08:00
|
|
|
if (!res.data) {
|
2022-08-25 14:24:37 +08:00
|
|
|
this.itemshow2 = true;
|
|
|
|
|
this.itemshow = false;
|
2022-08-23 11:12:00 +08:00
|
|
|
} else {
|
|
|
|
|
this.analysislist = res.data;
|
|
|
|
|
console.log(this.analysislist);
|
|
|
|
|
var yclassname = [];
|
|
|
|
|
var grilsheight = [];
|
|
|
|
|
var boyheight = [];
|
|
|
|
|
var boyweight = [];
|
|
|
|
|
var grilsweight = [];
|
2022-08-22 09:05:11 +08:00
|
|
|
|
2022-08-23 11:12:00 +08:00
|
|
|
for (var i = 0; i < this.analysislist.length; i++) {
|
|
|
|
|
this.analysislist[i].weightAndHeightAvgScoreList.forEach((el) => {
|
|
|
|
|
if (el.itemCode == "H001" && el.studentSex == "MALE") {
|
|
|
|
|
boyheight.push(el.averageScore);
|
|
|
|
|
} else if (el.itemCode == "H001" && el.studentSex == "FEMALE") {
|
|
|
|
|
grilsheight.push(el.averageScore);
|
|
|
|
|
} else if (el.itemCode == "W001" && el.studentSex == "FEMALE") {
|
|
|
|
|
grilsweight.push(el.averageScore);
|
|
|
|
|
} else if (el.itemCode == "W001" && el.studentSex == "MALE") {
|
|
|
|
|
boyweight.push(el.averageScore);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (grilsheight.length == i) {
|
|
|
|
|
grilsheight.push(0);
|
|
|
|
|
}
|
|
|
|
|
if (boyheight.length == i) {
|
|
|
|
|
boyheight.push(0);
|
|
|
|
|
}
|
|
|
|
|
if (boyweight.length == i) {
|
|
|
|
|
boyweight.push(0);
|
|
|
|
|
}
|
|
|
|
|
if (grilsweight.length == i) {
|
|
|
|
|
grilsweight.push(0);
|
2022-08-22 09:05:11 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-23 11:12:00 +08:00
|
|
|
this.analysislist.forEach((e) => {
|
|
|
|
|
yclassname.push(e.className);
|
|
|
|
|
});
|
|
|
|
|
console.log(grilsheight, boyheight);
|
|
|
|
|
console.log(grilsweight, boyweight);
|
|
|
|
|
var app = {};
|
2022-08-22 09:05:11 +08:00
|
|
|
|
2022-08-23 11:12:00 +08:00
|
|
|
var myChart = echarts.init(document.getElementById("main"));
|
|
|
|
|
var myChart2 = echarts.init(document.getElementById("main2"));
|
|
|
|
|
var option;
|
|
|
|
|
var option2;
|
|
|
|
|
const posList = [
|
|
|
|
|
"left",
|
|
|
|
|
"right",
|
|
|
|
|
"top",
|
|
|
|
|
"bottom",
|
|
|
|
|
"inside",
|
|
|
|
|
"insideTop",
|
|
|
|
|
"insideLeft",
|
|
|
|
|
"insideRight",
|
|
|
|
|
"insideBottom",
|
|
|
|
|
"insideTopLeft",
|
|
|
|
|
"insideTopRight",
|
|
|
|
|
"insideBottomLeft",
|
|
|
|
|
"insideBottomRight",
|
|
|
|
|
];
|
|
|
|
|
app.configParameters = {
|
|
|
|
|
rotate: {
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 90,
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
align: {
|
|
|
|
|
options: {
|
|
|
|
|
left: "left",
|
|
|
|
|
center: "center",
|
|
|
|
|
right: "right",
|
|
|
|
|
},
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
verticalAlign: {
|
|
|
|
|
options: {
|
|
|
|
|
top: "top",
|
|
|
|
|
middle: "middle",
|
|
|
|
|
bottom: "bottom",
|
|
|
|
|
},
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
position: {
|
|
|
|
|
options: posList.reduce(function (map, pos) {
|
|
|
|
|
map[pos] = pos;
|
|
|
|
|
return map;
|
|
|
|
|
}, {}),
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
distance: {
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 100,
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +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,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
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-23 11:12:00 +08:00
|
|
|
};
|
|
|
|
|
option = {
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: "axis",
|
|
|
|
|
axisPointer: {
|
|
|
|
|
type: "shadow",
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
|
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
legend: {
|
|
|
|
|
data: ["男", "女"],
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
xAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
axisTick: { show: false },
|
|
|
|
|
data: yclassname,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
yAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: "value",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: "男",
|
|
|
|
|
type: "bar",
|
|
|
|
|
barGap: 0,
|
|
|
|
|
color: "#00B050",
|
|
|
|
|
label: labelOption,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: "series",
|
|
|
|
|
},
|
|
|
|
|
data: boyheight,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "女",
|
|
|
|
|
type: "bar",
|
|
|
|
|
color: "red",
|
|
|
|
|
label: labelOption,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: "series",
|
|
|
|
|
},
|
|
|
|
|
data: grilsheight,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
option2 = {
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: "axis",
|
|
|
|
|
axisPointer: {
|
|
|
|
|
type: "shadow",
|
|
|
|
|
},
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
legend: {
|
|
|
|
|
data: ["男", "女"],
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
xAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
axisTick: { show: false },
|
|
|
|
|
data: yclassname,
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
],
|
|
|
|
|
yAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: "value",
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
2022-08-23 11:12:00 +08:00
|
|
|
],
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: "男",
|
|
|
|
|
type: "bar",
|
|
|
|
|
barGap: 0,
|
|
|
|
|
color: "#00B050",
|
|
|
|
|
label: labelOption,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: "series",
|
|
|
|
|
},
|
|
|
|
|
data: boyweight,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "女",
|
|
|
|
|
type: "bar",
|
|
|
|
|
color: "red",
|
|
|
|
|
label: labelOption,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: "series",
|
|
|
|
|
},
|
|
|
|
|
data: grilsweight,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
option && myChart.setOption(option);
|
|
|
|
|
option2 && myChart2.setOption(option2);
|
|
|
|
|
this.itemshow = true;
|
|
|
|
|
this.itemshow2 = false;
|
|
|
|
|
}
|
2022-08-22 09:05:11 +08:00
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//点击批次左边
|
|
|
|
|
batchCodeclick(row) {
|
|
|
|
|
this.batchCodeName = row.batchName;
|
|
|
|
|
this.batchCodeId = row.id;
|
|
|
|
|
this.analysisqueryParams.batchCode = row.batchCode;
|
|
|
|
|
this.batchCodeshow = false;
|
|
|
|
|
this.analysisinfo();
|
|
|
|
|
},
|
|
|
|
|
//点击批次
|
|
|
|
|
batchCodeshowclick() {
|
2022-08-29 11:51:56 +08:00
|
|
|
if (
|
|
|
|
|
this.analysisqueryParams.kindergartenId == "" ||
|
|
|
|
|
this.analysisqueryParams.kindergartenId == null
|
|
|
|
|
) {
|
2022-08-22 09:05:11 +08:00
|
|
|
this.$message.error("请先选择幼儿园");
|
|
|
|
|
} else {
|
|
|
|
|
this.testScore();
|
|
|
|
|
this.batchCodeshow = true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//批次
|
|
|
|
|
testScore() {
|
|
|
|
|
testScoreBatch(this.testqueryParams).then((res) => {
|
|
|
|
|
this.testScorelist = res.rows;
|
|
|
|
|
this.total4 = res.total;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//批次关闭
|
|
|
|
|
batchCodecancel() {
|
|
|
|
|
this.batchCodeshow = false;
|
|
|
|
|
},
|
|
|
|
|
//幼儿园关闭
|
|
|
|
|
kindergartencancel() {
|
|
|
|
|
this.kindergartenshow = false;
|
|
|
|
|
},
|
|
|
|
|
//幼儿园左侧点击
|
|
|
|
|
kindergartenNameclick(row) {
|
|
|
|
|
this.analysisqueryParams.kindergartenId = row.id;
|
|
|
|
|
this.kindergartenName = row.kindergartenName;
|
|
|
|
|
this.kindergartenId = row.id;
|
|
|
|
|
this.kindergartenshow = false;
|
2022-08-25 14:24:37 +08:00
|
|
|
if (this.analysisqueryParams.batchCode != "") {
|
|
|
|
|
this.analysisinfo();
|
|
|
|
|
}
|
2022-08-22 09:05:11 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
tKindergartenInfo(this.kindergartenType).then((res) => {
|
|
|
|
|
this.type = res.data[0];
|
|
|
|
|
this.type2 = res.data[1];
|
|
|
|
|
});
|
|
|
|
|
//用户权限
|
|
|
|
|
getRoleInfo().then((res) => {
|
|
|
|
|
console.log(res);
|
2022-08-29 11:51:56 +08:00
|
|
|
this.analysisqueryParams.kindergartenId = res.data.kindergartenId;
|
|
|
|
|
console.log(this.analysisqueryParams);
|
|
|
|
|
|
|
|
|
|
var user = res.data.roleKeys;
|
|
|
|
|
console.log(user);
|
|
|
|
|
if (user.includes("enchou")) {
|
|
|
|
|
this.showyey = false;
|
|
|
|
|
return;
|
|
|
|
|
} else if (user.includes("teacher")) {
|
|
|
|
|
this.showyey = false;
|
|
|
|
|
return;
|
|
|
|
|
} else if (user.includes("parent")) {
|
|
|
|
|
this.showyey = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-08-22 09:05:11 +08:00
|
|
|
});
|
|
|
|
|
//获取幼儿园list
|
|
|
|
|
listKindergartenInfo(this.kqueryParams).then((response) => {
|
|
|
|
|
this.kindergartenList = response.rows;
|
|
|
|
|
this.total1 = response.total;
|
|
|
|
|
// console.log(this.kindergartenList);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped='scss'>
|
|
|
|
|
::v-deep .el-card__header {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
</style>
|