12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151 |
- <template>
- <el-dialog
- class="page-dialog"
- :visible.sync="modalIsShow"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :show-close="false"
- append-to-body
- fullscreen
- @opened="dialogOpend"
- @close="dialogClose"
- >
- <div slot="title" class="box-justify">
- <div>
- <span>{{ course.courseName }}</span>
- </div>
- <div>
- <el-button
- type="primary"
- :loading="downloading"
- icon="el-icon-download"
- @click="toExportNormalScore"
- >导出平时成绩</el-button
- >
- <el-button
- type="primary"
- :loading="downloading"
- icon="el-icon-download"
- @click="toExport"
- >导出报告</el-button
- >
- <el-button
- type="primary"
- :loading="downloading"
- icon="el-icon-document-checked"
- @click="toSave"
- >保存报告</el-button
- >
- <el-button class="btn-back" @click="cancel">
- 返回<i class="el-icon-arrow-right"></i>
- </el-button>
- </div>
- </div>
- <div v-if="modalIsShow">
- <!-- base info -->
- <div class="page-head">
- <h2>
- <span>课程基本情况</span>
- </h2>
- </div>
- <div class="part-box part-box-pad">
- <table class="table table-tiny">
- <colgroup>
- <col width="100" />
- <col />
- <col width="100" />
- <col />
- <col width="110" />
- <col />
- <col width="100" />
- <col />
- </colgroup>
- <tr>
- <td class="td-bg">课程名称</td>
- <td>{{ commonInfo.courseName }}</td>
- <td class="td-bg">课程代码</td>
- <td>{{ commonInfo.courseCode }}</td>
- <td class="td-bg">课程英文名称</td>
- <td>
- <el-input
- v-model.trim="courseBasicInfo.courseEnName"
- placeholder="请填写"
- size="small"
- :maxlength="50"
- ></el-input>
- </td>
- <td class="td-bg">学分</td>
- <td>
- <el-input-number
- v-model="courseBasicInfo.credit"
- placeholder="请录入学分"
- size="small"
- :min="0"
- :max="999"
- :controls="false"
- style="width: 100px"
- ></el-input-number>
- </td>
- </tr>
- <tr>
- <td class="td-bg">课程性质</td>
- <td>
- <el-input
- v-model.trim="courseBasicInfo.courseType"
- placeholder="请填写"
- size="small"
- :maxlength="50"
- ></el-input>
- </td>
- <td class="td-bg">开课学院</td>
- <td>{{ courseBasicInfo.college }}</td>
- <td class="td-bg">开课专业</td>
- <td>{{ courseBasicInfo.profession }}</td>
- <td class="td-bg">学时</td>
- <td>
- <el-input-number
- v-model="courseBasicInfo.period"
- placeholder="请填写"
- :min="0"
- :max="999"
- :controls="false"
- size="small"
- style="width: 100px"
- ></el-input-number>
- </td>
- </tr>
- <tr>
- <td class="td-bg">开课班级</td>
- <td>
- <el-input
- v-model.trim="courseBasicInfo.teachingObject"
- placeholder="请填写"
- size="small"
- :maxlength="50"
- ></el-input>
- </td>
- <td class="td-bg">开课学期</td>
- <td>{{ courseBasicInfo.openTime }}</td>
- <td class="td-bg">学生人数</td>
- <td>{{ courseBasicInfo.participantCount }}</td>
- <td class="td-bg">期望值</td>
- <td>
- {{ courseBasicInfo.courseDegree }}
- </td>
- </tr>
- <tr>
- <td class="td-bg">任课老师</td>
- <td>
- <el-input
- v-model.trim="courseBasicInfo.teacher"
- placeholder="请填写"
- size="small"
- :maxlength="50"
- ></el-input>
- </td>
- <td class="td-bg">评价人</td>
- <td colspan="5">
- <el-input
- v-model.trim="courseBasicInfo.director"
- placeholder="请填写评价负责人姓名"
- size="small"
- :maxlength="50"
- ></el-input>
- </td>
- </tr>
- </table>
- </div>
- <div class="page-head">
- <h2>
- <span>课程目标考核分布</span>
- <el-popover
- popper-class="el-popper-dark"
- placement="right-start"
- width="500"
- trigger="hover"
- >
- <i class="el-icon-question" slot="reference"></i>
- <div>
- <p>
- 课程目标分布会自动按题库系统里试卷下试题标记的属性内容进行显示
- </p>
- </div>
- </el-popover>
- </h2>
- </div>
- <div class="part-box part-box-pad">
- <el-table :data="questionInfoTable">
- <el-table-column
- label="试题号"
- prop="name"
- width="200"
- align="center"
- fixed="left"
- ></el-table-column>
- <el-table-column
- label="合计"
- prop="totalScore"
- width="60"
- align="center"
- fixed="left"
- ></el-table-column>
- <el-table-column
- v-for="struct in paperStructs"
- :key="struct.mainNumber"
- :label="struct.mainNumber"
- align="center"
- >
- <el-table-column
- v-for="subNumber in struct.subNumbers"
- :key="subNumber"
- :label="subNumber"
- :prop="`${struct.mainNumber}_${subNumber}`"
- align="center"
- min-width="50"
- >
- </el-table-column>
- </el-table-column>
- </el-table>
- <div class="chart-box" style="height: 300px; margin-top: 20px">
- <v-chart
- v-if="questionInfoChartOption"
- :option="questionInfoChartOption"
- ></v-chart>
- </div>
- </div>
- <div class="page-head">
- <h2>
- <span>课程目标达成评价结果</span>
- <el-popover
- popper-class="el-popper-dark"
- placement="right-start"
- width="500"
- trigger="hover"
- >
- <i class="el-icon-question" slot="reference"></i>
- <div>
- <p>1.评价依据:填写通过考核什么内容实现课程目标的评价;</p>
- <p>2.目标分值:对应考核环节的满分;</p>
- <p>
- 3.权重:对应考核环节在对应的课程目标中的权重,目标下各项权重相加等于1;
- </p>
- <p>4.实际平均分:为参与评价的学生在该环节的平均分;</p>
- <p>5.整体课程目标达成评价值:为课程分目标达成评价值的最小值。</p>
- </div>
- </el-popover>
- </h2>
- </div>
- <div class="part-box part-box-pad">
- <h4 class="part-title mb-2">课程考核成绩评价结果</h4>
- <table class="table">
- <tr class="td-bg">
- <th>课程目标</th>
- <th>评价依据</th>
- <th>评价环节</th>
- <th>权重</th>
- <th>目标分值</th>
- <th>实际平均分</th>
- <th>目标达成评价值</th>
- </tr>
- <template v-for="item in courseTargetList">
- <tr
- v-for="(evaluation, eindex) in item.evaluationList"
- :key="`${item.targetId}-${eindex}`"
- >
- <!-- 课程目标 -->
- <td
- v-if="!eindex"
- :rowspan="item.evaluationList.length"
- style="width: 240px"
- >
- {{ item.targetName }}
- </td>
- <!-- 评价依据 -->
- <td v-if="!eindex" :rowspan="item.evaluationList.length">
- <p
- v-for="edesc in item.graduationRequirementPoint.split(',')"
- :key="edesc"
- >
- {{ edesc }}
- </p>
- </td>
- <!-- 评价环节 -->
- <td style="width: 140px">{{ evaluation.evaluation }}</td>
- <!-- 权重 -->
- <td style="width: 80px">
- {{ evaluation.targetWeight }}
- </td>
- <!-- 目标分值 -->
- <td style="width: 100px">{{ evaluation.targetScore }}</td>
- <!-- 实际平均分 -->
- <td style="width: 100px">{{ evaluation.targetAvgScore }}</td>
- <!-- 目标达成评价值 -->
- <td
- v-if="!eindex"
- :rowspan="item.evaluationList.length"
- style="width: 140px"
- >
- {{ item.evaluationValue }}
- </td>
- </tr>
- </template>
- <tr>
- <td colspan="6">课程总目标</td>
- <td>{{ courseTargetValue }}</td>
- </tr>
- </table>
- <div class="chart-box" style="height: 400px; margin-top: 20px">
- <v-chart
- v-if="courseTargetListChartOption"
- :option="courseTargetListChartOption"
- ></v-chart>
- </div>
- <h4 class="part-title mb-2">课程考核成绩评价明细结果</h4>
- <el-table
- :data="studentScoreTable"
- :span-method="studentScoreSpanMethod"
- >
- <el-table-column
- label="姓名"
- prop="name"
- min-width="120"
- align="center"
- fixed="left"
- ></el-table-column>
- <el-table-column
- label="学号"
- prop="studentCode"
- width="160"
- align="center"
- fixed="left"
- ></el-table-column>
- <el-table-column
- v-for="(target, tindex) in courseTargets"
- :key="tindex"
- :label="target.targetName"
- align="center"
- >
- <el-table-column
- v-if="target.finalDimensions.length"
- :label="`期末成绩(${target.finalWeight}%)`"
- :prop="`${target.targetId}-final`"
- width="140"
- align="center"
- >
- </el-table-column>
- <el-table-column
- v-for="work in target.usualWorks"
- :key="`${target.targetId}${work.evaluation}`"
- :label="`${work.evaluation}(${work.targetWeight}%)`"
- :prop="`${target.targetId}-usual-${work.evaluation}`"
- min-width="100"
- align="center"
- >
- </el-table-column>
- </el-table-column>
- <el-table-column
- label="综合成绩"
- prop="score"
- align="center"
- width="100"
- ></el-table-column>
- </el-table>
- </div>
- <div class="page-head">
- <h2>
- <span> 课程目标达成度评价结果分析及改进措施 </span>
- </h2>
- </div>
- <div class="part-box part-box-pad">
- <div
- v-for="item in courseSuggest"
- :key="item.targetId"
- class="target-suggest mb-4"
- >
- <h4 class="part-title">{{ item.targetName }}</h4>
- <div class="chart-box" style="height: 400px; margin-top: 20px">
- <v-chart
- v-if="item.chartOption"
- :option="item.chartOption"
- ></v-chart>
- </div>
- <el-form label-position="top">
- <el-form-item label="达成情况">
- <el-input
- v-model="item.finishPoints"
- type="textarea"
- :autosize="{ minRows: 2, maxRows: 5 }"
- resize="none"
- placeholder="请输入"
- clearable
- maxlength="999"
- show-word-limit
- ></el-input>
- </el-form-item>
- <el-form-item label="课程支撑毕业要求达成情况评价">
- <el-input
- v-model="item.requirementPoints"
- type="textarea"
- :autosize="{ minRows: 2, maxRows: 5 }"
- resize="none"
- placeholder="请输入"
- clearable
- maxlength="999"
- show-word-limit
- ></el-input>
- </el-form-item>
- <el-form-item label="课程持续改进">
- <el-input
- v-model="item.courseSuggest"
- type="textarea"
- :autosize="{ minRows: 2, maxRows: 5 }"
- resize="none"
- placeholder="请输入"
- clearable
- maxlength="999"
- show-word-limit
- ></el-input>
- </el-form-item>
- </el-form>
- </div>
- </div>
- </div>
- <div slot="footer"></div>
- </el-dialog>
- </template>
- <script>
- // import { reportData } from "./data";
- import {
- targetStatisticsDetail,
- targetStatisticsReport,
- targetStatisticsNormalScoreExport,
- targetStatisticsSave,
- targetStatisticsChangeCheck,
- } from "../../api";
- import { downloadByApi } from "@/plugins/download";
- import { calcSum } from "@/plugins/utils";
- import timeMixin from "@/mixins/timeMixin";
- export default {
- name: "detail-target-statistics",
- mixins: [timeMixin],
- props: {
- course: {
- type: Object,
- default() {
- return {};
- },
- },
- },
- filters: {
- percentFilter(val) {
- const num = val || 0;
- const perc = num % 10 ? 2 : 1;
- return ((num || 0) / 100).toFixed(perc);
- },
- },
- data() {
- return {
- modalIsShow: false,
- expectancyList: [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0],
- modalForm: {},
- commonInfo: {},
- courseBasicInfo: {},
- paperStructs: [],
- questionInfoTable: [],
- courseTargetList: [],
- courseTargetValue: 0.67,
- questionInfoChartOption: null,
- courseTargetListChartOption: null,
- courseTargets: [],
- targetColumnCounts: [],
- studentScoreTable: [],
- courseSuggest: [],
- downloading: false,
- };
- },
- beforeDestroy() {
- this.clearSetTs();
- },
- methods: {
- cancel() {
- this.modalIsShow = false;
- },
- open() {
- this.modalIsShow = true;
- },
- dialogClose() {
- this.clearSetTs();
- },
- dialogOpend() {
- this.initData();
- this.openAutoSave();
- },
- openAutoSave() {
- if (!this.modalIsShow) return;
- this.clearSetTs();
- this.addSetTime(async () => {
- await this.toSave(true);
- this.openAutoSave();
- }, 1 * 60 * 1000);
- },
- resetData() {
- this.commonInfo = {};
- this.courseBasicInfo = {};
- this.paperStructs = [];
- this.questionInfoTable = [];
- this.courseTargetList = [];
- this.courseTargetValue = 0.67;
- this.questionInfoChartOption = null;
- this.courseTargetListChartOption = null;
- this.courseTargets = [];
- this.targetColumnCounts = [];
- this.studentScoreTable = [];
- this.courseSuggest = [];
- this.downloading = false;
- },
- buildData(data) {
- this.commonInfo = data.commonInfo;
- this.courseBasicInfo = data.courseBasicInfo;
- const courseSuggest = data.courseSuggest
- ? JSON.parse(data.courseSuggest)
- : [];
- const targetSuggestsMap = {};
- courseSuggest.forEach((item) => {
- targetSuggestsMap[item.targetId] = {
- finishPoints: item.finishPoints,
- requirementPoints: item.requirementPoints,
- courseSuggest: item.courseSuggest,
- };
- });
- const courseTargetScatterMap = data.courseTargetScatterMap;
- this.courseSuggest = data.courseEvaluationResultInfo.targetList.map(
- (target) => {
- const suggest = targetSuggestsMap[target.targetId] || {};
- const finishPoints = suggest.finishPoints || "";
- const requirementPoints = suggest.requirementPoints || "";
- const courseSuggest = suggest.courseSuggest || "";
- const chartData = courseTargetScatterMap[target.targetId] || [];
- return {
- targetId: target.targetId,
- targetName: target.targetName,
- finishPoints,
- requirementPoints,
- courseSuggest,
- chartOption: this.getTargetChartOption(
- chartData,
- target.targetName
- ),
- };
- }
- );
- this.courseTargetValue =
- data.courseEvaluationResultInfo.targetEvaluationSumValue;
- this.courseTargetList = data.courseEvaluationResultInfo.targetList.map(
- (target) => {
- target.normalTargetWeight = calcSum(
- target.evaluationList.slice(0, -1).map((elem) => elem.targetWeight)
- );
- return target;
- }
- );
- const {
- courseEvaluationSpreadInfo: { questionInfo, scoreList },
- } = data;
- this.parsePaperStructs(questionInfo);
- this.parseQuestionInfoTable(questionInfo);
- this.questionInfoChartOption = this.getQuestionInfoChartOption(scoreList);
- this.courseTargetListChartOption = this.getCourseTargetListChartOption();
- let examStudentList =
- data.courseEvaluationResultDetailInfo.examStudentList;
- examStudentList.pop();
- examStudentList.splice(examStudentList.length - 2, 1);
- this.parseCourseTargets(examStudentList);
- this.parseStudentScoreTable(examStudentList);
- },
- async initData() {
- this.resetData();
- await this.checkChange();
- const data = await targetStatisticsDetail({
- cultureProgramId: this.course.cultureProgramId,
- courseId: this.course.courseId,
- });
- this.buildData(data);
- },
- async checkChange() {
- const res = await targetStatisticsChangeCheck({
- cultureProgramId: this.course.cultureProgramId,
- courseId: this.course.courseId,
- report: true,
- });
- if (res.courseTargetChange) {
- this.$notify.warning("课程目标与已保存不一致,请重新设置权重!");
- }
- if (res.evaluationChange) {
- this.$notify.warning(
- "评价方式与已保存不一致,请重新设置权重及导入新的平时成绩!"
- );
- }
- if (res.targetScoreChange) {
- this.$notify.warning(res.targetScoreChangeStr);
- }
- },
- parsePaperStructs(questionInfo) {
- if (!questionInfo || !questionInfo.length) return;
- const structMap = {};
- questionInfo.forEach((item) => {
- if (!structMap[item.mainNumber]) {
- structMap[item.mainNumber] = [];
- }
- structMap[item.mainNumber].push(item.subNumber + "");
- });
- this.paperStructs = Object.keys(structMap).map((mainNumber) => {
- return {
- mainNumber,
- subNumbers: structMap[mainNumber],
- };
- });
- },
- parseQuestionInfoTable(questionInfo) {
- const targetMap = {};
- const tData = {
- name: "目标分值",
- totalScore: calcSum(questionInfo.map((item) => item.score || 0)),
- };
- questionInfo.forEach((question) => {
- const qno = `${question.mainNumber}_${question.subNumber}`;
- tData[qno] = question.score;
- question.targetList.forEach((target) => {
- if (!targetMap[target.targetId]) {
- targetMap[target.targetId] = {
- name: target.targetName,
- totalScore: 0,
- };
- }
- if (target.dimensionList.length) {
- targetMap[target.targetId][qno] = question.score;
- targetMap[target.targetId].totalScore += question.score;
- } else {
- targetMap[target.targetId][qno] = "";
- }
- });
- });
- this.questionInfoTable = [tData, ...Object.values(targetMap)];
- },
- getQuestionInfoChartOption(scoreList) {
- const scoreRange = scoreList.scoreRange.map((item) => {
- return {
- name: `${item.minScore}~${item.maxScore}`,
- value: item.rate,
- };
- });
- scoreRange.unshift({
- name: "不及格",
- value: scoreList.failRate,
- });
- let options = {
- color: ["#556dff", "#3A5AE5"],
- title: {
- text: "成绩分布图",
- left: "center",
- },
- grid: {
- left: 40,
- top: 60,
- right: 80,
- bottom: 40,
- containLabel: true,
- },
- xAxis: {
- type: "category",
- name: "成绩(分)",
- nameTextStyle: {
- color: "#363D59",
- },
- data: scoreRange.map((item) => item.name),
- axisLabel: {
- color: "#6F7482",
- interval: 0,
- fontSize: 12,
- margin: 12,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- axisPointer: {
- type: "shadow",
- },
- },
- yAxis: {
- type: "value",
- name: "百分比(%)",
- nameTextStyle: {
- color: "#363D59",
- },
- axisLabel: {
- color: "#6F7482",
- },
- axisLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- },
- series: [
- {
- name: "占比",
- type: "bar",
- barWidth: 60,
- data: scoreRange.map((item) => item.value),
- label: {
- show: true,
- formatter: "{c}%",
- position: "top",
- },
- },
- ],
- };
- return options;
- },
- getCourseTargetListChartOption() {
- let options = {
- color: ["#556dff", "#f59a23"],
- title: {
- text: "课程目标达成评价值",
- left: "center",
- },
- grid: {
- left: 40,
- top: 60,
- right: 80,
- bottom: 30,
- containLabel: true,
- },
- legend: {
- top: 0,
- data: ["期望值", "达成值"],
- itemWidth: 12,
- itemHeight: 4,
- itemGap: 22,
- right: 40,
- },
- xAxis: {
- type: "category",
- name: "课程目标",
- nameTextStyle: {
- color: "#363D59",
- },
- data: this.courseTargetList.map((item) => item.targetName),
- axisLabel: {
- color: "#6F7482",
- interval: 0,
- fontSize: 12,
- margin: 12,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- axisPointer: {
- type: "shadow",
- },
- },
- yAxis: {
- type: "value",
- name: "期望值",
- min: 0,
- max: 1,
- interval: 0.1,
- nameTextStyle: {
- color: "#363D59",
- },
- axisLabel: {
- color: "#6F7482",
- },
- axisLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- },
- series: [
- {
- name: "达成值",
- type: "bar",
- barWidth: 60,
- data: this.courseTargetList.map((item) => item.evaluationValue),
- label: {
- show: true,
- position: "top",
- },
- },
- {
- name: "期望值",
- type: "line",
- symbol: "none",
- data: this.courseTargetList.map(
- (item) => this.courseBasicInfo.courseDegree || 0
- ),
- },
- ],
- };
- return options;
- },
- getTargetChartOption(data, targetName) {
- const dataList = data.map((item, index) => {
- const val = Object.entries(item)[0];
- return {
- index: index + 1,
- name: val[0],
- value: val[1],
- };
- });
- let options = {
- color: ["#556dff", "#f59a23"],
- title: {
- text: `${targetName}个体达成情况`,
- top: "center",
- },
- grid: {
- left: 40,
- top: 60,
- right: 80,
- bottom: 30,
- containLabel: true,
- },
- legend: {
- top: 0,
- data: ["期望值", "达成值"],
- itemWidth: 12,
- itemHeight: 4,
- itemGap: 22,
- right: 40,
- },
- xAxis: {
- type: "category",
- name: "学生代号",
- nameTextStyle: {
- color: "#363D59",
- },
- data: dataList.map((item) => item.index),
- axisLabel: {
- color: "#6F7482",
- interval: 0,
- fontSize: 12,
- margin: 12,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- axisPointer: {
- type: "shadow",
- },
- },
- yAxis: {
- type: "value",
- name: "期望值",
- min: 0,
- max: 1,
- interval: 0.1,
- nameTextStyle: {
- color: "#363D59",
- },
- axisLabel: {
- color: "#6F7482",
- },
- axisLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- splitLine: {
- lineStyle: {
- color: "#EFF0F5",
- },
- },
- },
- series: [
- {
- name: "达成值",
- type: "scatter",
- data: dataList.map((item) => item.value),
- },
- {
- name: "期望值",
- type: "line",
- symbol: "none",
- data: dataList.map(
- (item) => this.courseBasicInfo.courseDegree || 0
- ),
- },
- ],
- };
- return options;
- },
- parseCourseTargets(examStudentList) {
- if (!examStudentList || !examStudentList.length) return;
- const targetList = examStudentList[0].targetList;
- const targetVals = {};
- this.courseTargetList.forEach((target) => {
- targetVals[target.targetId] = target.evaluationValue;
- });
- let tColumnCounts = [];
- this.courseTargets = targetList.map((target) => {
- const ntarget = {
- targetId: target.targetId,
- targetName: target.targetName,
- finalWeight: target.finalScore?.targetWeight,
- usualWeight: 0,
- evaluationValue: targetVals[target.targetId],
- };
- ntarget.usualWeight = calcSum(
- (target.usualScore?.scoreList || []).map((item) => item.targetWeight)
- );
- ntarget.finalDimensions = target.finalScore ? ["期末成绩"] : [];
- ntarget.usualWorks = (target.usualScore?.scoreList || []).map(
- (item) => {
- return {
- evaluation: item.evaluation,
- targetWeight: item.targetWeight,
- };
- }
- );
- tColumnCounts.push(
- ntarget.finalDimensions.length + ntarget.usualWorks.length
- );
- return ntarget;
- });
- // 只展示有期末成绩或平时成绩的目标
- this.courseTargets = this.courseTargets.filter(
- (item) => item.finalDimensions.length || item.usualWorks.length
- );
- let tCount = 0;
- this.targetColumnCounts = tColumnCounts.map((item) => {
- tCount += item;
- return tCount;
- });
- },
- getTargetFirseKey(target) {
- if (target.finalDimensions.length) {
- return `${target.targetId}-final`;
- } else {
- return `${target.targetId}-usual-${target.usualWorks[0].evaluation}`;
- }
- },
- parseStudentScoreTable(examStudentList) {
- if (!this.courseTargets.length) return;
- const lastIndex = examStudentList.length - 1;
- const studentScoreTable = examStudentList.map((student, sindex) => {
- const nitem = {
- name: student.name,
- studentCode: student.studentCode,
- score: student.score,
- };
- const finalScoreKey =
- lastIndex === sindex ? "matrixAvgScore" : "targetScoreSum";
- const workScoreKey = lastIndex === sindex ? "matrixAvgScore" : "score";
- student.targetList.forEach((target, index) => {
- nitem[`${target.targetId}-final`] =
- target.finalScore && target.finalScore[finalScoreKey];
- (target.usualScore?.scoreList || []).forEach((work) => {
- nitem[`${target.targetId}-usual-${work.evaluation}`] =
- work[workScoreKey];
- });
- });
- return nitem;
- });
- const targetData = {
- name: "课程目标达成度",
- score: "",
- };
- this.courseTargets.forEach((target) => {
- targetData[this.getTargetFirseKey(target)] = target.evaluationValue;
- });
- studentScoreTable.push(targetData);
- const fTarget = this.courseTargets[0];
- const fKey = this.getTargetFirseKey(fTarget);
- studentScoreTable.push({
- name: "课程达成度",
- [fKey]: this.courseTargetValue,
- });
- this.studentScoreTable = studentScoreTable;
- },
- studentScoreSpanMethod({ row, column, rowIndex, columnIndex }) {
- const lineCount = this.studentScoreTable.length - 1;
- const maxTargetColumnCount = this.targetColumnCounts.slice(-1)[0];
- if (rowIndex === lineCount) {
- if (columnIndex === 0) {
- return [1, 2];
- } else if (columnIndex === 2) {
- return [1, maxTargetColumnCount + 1];
- } else {
- return [0, 0];
- }
- }
- if (rowIndex === lineCount - 1) {
- const colsMap = {};
- const targetColumns = [0, ...this.targetColumnCounts.slice(0, -1)];
- targetColumns.map((item, index) => {
- colsMap[item] = this.targetColumnCounts[index] - item;
- });
- if (columnIndex === 0) {
- return [1, 2];
- } else {
- if (targetColumns.includes(columnIndex - 2)) {
- return [1, colsMap[columnIndex - 2]];
- } else if (columnIndex < maxTargetColumnCount + 2) {
- return [0, 0];
- } else {
- return [1, 1];
- }
- }
- }
- if (rowIndex === lineCount - 2) {
- if (columnIndex === 0) {
- return [1, 2];
- } else if (columnIndex === 1) {
- return [0, 0];
- } else {
- return [1, 1];
- }
- }
- },
- async toSave(autoSave = false) {
- if (this.downloading) return;
- this.downloading = true;
- const res = await targetStatisticsSave({
- cultureProgramId: this.course.cultureProgramId,
- courseId: this.course.courseId,
- ...this.courseBasicInfo,
- courseSuggest: JSON.stringify(this.courseSuggest),
- }).catch(() => {});
- this.downloading = false;
- if (!res) return;
- this.$message.success("保存成功!");
- if (autoSave) {
- this.openAutoSave();
- } else {
- this.initData();
- }
- },
- async toExport() {
- if (this.downloading) return;
- this.downloading = true;
- const res = await downloadByApi(() => {
- const datas = {
- cultureProgramId: this.course.cultureProgramId,
- courseId: this.course.courseId,
- };
- return targetStatisticsReport(datas);
- }).catch((e) => {
- this.$message.error(e || "下载失败,请重新尝试!");
- });
- this.downloading = false;
- if (!res) return;
- this.$message.success("下载成功!");
- },
- async toExportNormalScore() {
- if (this.downloading) return;
- this.downloading = true;
- const res = await downloadByApi(() => {
- const datas = {
- cultureProgramId: this.course.cultureProgramId,
- courseId: this.course.courseId,
- };
- return targetStatisticsNormalScoreExport(datas);
- }).catch((e) => {
- this.$message.error(e || "下载失败,请重新尝试!");
- });
- this.downloading = false;
- if (!res) return;
- this.$message.success("下载成功!");
- },
- },
- };
- </script>
- <style scoped>
- .td-bg {
- color: #8b8fa1;
- font-weight: 500;
- }
- </style>
|