| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <div class="myGradeHistory">
- <div class="chart_title">
- <h3 class="title">我的历次成绩</h3>
- <!-- <el-button type="primary" size="small" class="compare_btn" @click="showExamCompareDialog">
- <img src="../../../assets/studentAnalysis/echarts.svg" alt="图表" class="btn_icon">
- 历次考试对比
- </el-button> -->
- </div>
- <div class="content" v-if="gradeHistoryData.length > 0">
- <el-table ref="gradeTable" :data="tableData" style="width: 100%" border :header-cell-style="headerCellStyle"
- :cell-style="cellStyle" stripe @selection-change="handleSelectionChange" width="55" align="center">
- <el-table-column type="selection" width="55" align="center"></el-table-column>
- <el-table-column type="index" label="序号" width="70" align="center">
- <template slot-scope="scope">
- {{scope.$index <10 ? '0' + (scope.$index + 1) : scope.$index + 1 }}
- </template>
- </el-table-column>
- <el-table-column prop="examName" label="考试名称" align="center"></el-table-column>
- <!-- <el-table-column prop="fullScore" label="满分" width="90" align="center"></el-table-column> -->
- <el-table-column prop="rawScore" label="原始分" width="90" align="center"></el-table-column>
- <!-- <el-table-column prop="classRank" label="班级排名" width="90" align="center"></el-table-column>
- <el-table-column prop="gradeRank" label="年级排名" width="90" align="center"></el-table-column> -->
- <!-- <el-table-column prop="standardScore" label="标准分" width="90" align="center"></el-table-column> -->
- <el-table-column prop="scoreRate" label="得分率" width="90" align="center">
- <template slot-scope="scope">
- {{ scope.row.scoreRate }}%
- </template>
- </el-table-column>
- <el-table-column label="操作" width="120" align="center">
- <template slot-scope="scope">
- <el-button type="text" @click="viewDetails(scope.row)">查看答题卡</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 暂无数据 -->
- <div class="noData" v-else>
- <div class="module_chart no_content_data no_data" element-loading-background="#ffffff">
- <span>暂无数据</span>
- </div>
- </div>
- <!-- 学生答题卡预览组件 -->
- <StudentPaper v-model="showStudentPaperDialog" :paperInfo="paperInfo" :currentPageIndex="currentPageIndex"
- :pageTitle="paperTitle"></StudentPaper>
- <!-- 历次考试对比弹窗 - 使用公共组件 -->
- <!-- <BenchTaskSelect v-if="showBenchTaskSelect" :showDialog.sync="showBenchTaskSelect" :isMultiple="isMultiple"
- :title="benchTaskTitle" :before="1" @GetSelectId="GetSelectId"></BenchTaskSelect> -->
- </div>
- </template>
- <script>
- import StudentPaper from '@/components/StudentPaper.vue' //学生答题卡预览组件
- import { mapGetters } from 'vuex'
- // 导入公共组件
- //import BenchTaskSelect from '@/views/analysisReport/components/benchTaskSelectSchool';
- export default {
- components: {
- StudentPaper,
- // BenchTaskSelect
- },
- name: "MyGradeHistory",
- props: {
- mode: {
- type: String,
- default: 'grade'
- },
- // 接收历次成绩数据
- gradeHistoryData: {
- type: Array,
- default: () => []
- },
- // 接收个人画像数据
- portraitData: {
- type: Object,
- default: () => {}
- }
- },
- data() {
- return {
- showStudentPaperDialog: false, //显示答题卡弹框
- paperInfo: {},
- paperTitle: '', //答题卡弹框标题
- currentPageIndex: 0 ,//当前选中的答题卡第几页
- // 控制弹窗显示/隐藏
- showBenchTaskSelect: false,
- // 是否允许多选
- isMultiple: true,
- // 弹窗标题
- benchTaskTitle: '历次考试对比',
- // 是否正在初始化全选
- isInitializing: false,
- };
- },
- watch: {
- // 监听gradeHistoryData变化,数据加载完成后默认全选
- gradeHistoryData: {
- handler(newVal) {
- if (newVal && newVal.length > 0) {
- this.$nextTick(() => {
- if (this.$refs.gradeTable) {
- // 设置初始化标志,避免触发selection-change事件
- this.isInitializing = true;
- // 先清空所有选择,再重新全选
- this.$refs.gradeTable.clearSelection();
- // 遍历表格数据,手动选中每一行
- this.tableData.forEach(row => {
- this.$refs.gradeTable.toggleRowSelection(row, true);
- });
- // 完成后重置标志
- this.isInitializing = false;
- }
- });
- }
- },
- immediate: true
- }
- },
- computed: {
- ...mapGetters(['userInfo']),
- pageName() {
- return this.$store.state.report.examSelectItem.examName
- }, //考试名称
- reportParam() {
- return {
- examLevel: this.$store.state.report.filterObject.examLevel, //1-联考 2-单校
- contrastExamIds: this.$store.state.report.filterObject.contrastExamIds, //多次考试任务对比ID,不包含当前任务ID
- examId: this.$store.state.report.filterObject.examId, //考试id
- subjectCode: this.$store.state.report.filterObject.subjectCode, //科目code
- subjectGroupType: this.$store.state.report.filterObject.subjectGroupType, //是否为组合科目 1为组合科目 0为非组合科目
- isTotal: this.$store.state.report.filterObject.isTotal //是否为总分科目 1为总分 0为非总分
- }
- }, //分析报告公共参数变量
- // 处理数据,映射接口字段到表格字段
- tableData() {
- return this.gradeHistoryData.map(item => ({
- id: item.id || Math.random(),
- examName: item.examName || '',
- fullScore: item.fullScore,
- rawScore: item.originalScore, // 接口字段originalScore映射到rawScore
- classRank: item.classRank,
- gradeRank: item.gradeRank,
- standardScore: item.standardScore,
- scoreRate: item.scoreRate,
- examId: item.examId, //考试id
- subjectId: item.subjectId, //科目id
- }));
- },
- // 表头样式
- headerCellStyle() {
- return {
- backgroundColor: '#F5F7FA',
- color: '#303133',
- height: '50px',
- padding: '0',
- margin: '0',
- lineHeight: '50px'
- };
- },
- // 表格内容样式
- cellStyle() {
- return {
- color: '#606266',
- height: '50px',
- padding: '0',
- margin: '0',
- lineHeight: '50px'
- };
- },
- },
- methods: {
- // 处理选择变化
- handleSelectionChange(selection) {
- // 初始化过程中不触发事件,避免重复调用接口
- if (this.isInitializing) {
- return;
- }
- let selectedExamIds = selection.map(item => item.examId);
- // 传递选中的考试ID给父组件
- this.$emit('selection-change', selectedExamIds);
- },
- // 历史考试对比弹窗
- showExamCompareDialog() {
- this.showBenchTaskSelect = true;
- },
- // 获取选中的ID
- GetSelectId() {
- // 获取选中的考试ID
- const selectedExamIds = this.$store.state.report.lastExamSelectIds || [];
- // 通过事件将选中的考试ID传递给父组件
- this.$emit('select-exam-ids', selectedExamIds);
- // 关闭弹窗
- this.showBenchTaskSelect = false;
- },
- viewDetails(row) {
- this.paperTitle = `${row.examName}_${this.userInfo.userName}`
- this.paperInfo = { examId: this.reportParam.examId, subjectCode: this.reportParam.subjectCode }
- this.showStudentPaperDialog = true
- // 实际项目中可以跳转到详情页面或展开详情
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .myGradeHistory {
- background-color: #ffffff;
- border-radius: 10px;
- padding: 20px;
- box-sizing: border-box;
- .chart_title {
- .title {
- font-size: 16px;
- font-weight: 600;
- color: #333333;
- margin: 0 0 20px 0;
- }
- // 历史考试对比
- .compare_btn {
- font-size: 14px;
- padding: 8px 10px;
- background: #FFFFFF;
- border-radius: 4px;
- border: 1px solid #DCDFE6;
- color: #333333;
- display: flex;
- align-items: center;
- justify-content: center;
- .btn_icon {
- width: 16px;
- height: 16px;
- margin-right: 4px;
- vertical-align: middle;
- }
- span {
- vertical-align: middle;
- }
- }
- }
- /* 表格区域 */
- .content {
- /* 调整表格斑马条纹颜色 */
- :deep(.el-table--striped .el-table__body tr.el-table__row--striped) {
- background-color: #FAFAFA !important;
- }
- /* 确保表头行高 */
- :deep(.el-table__header tr) {
- height: 50px !important;
- }
- /* 确保表格内容行高 */
- :deep(.el-table__body tr) {
- height: 50px !important;
- }
- /* 移除表头单元格内外边距 */
- :deep(.el-table__header th.el-table__cell) {
- padding: 0 !important;
- margin: 0 !important;
- height: 50px !important;
- line-height: 50px !important;
- }
- /* 移除表格内容单元格内外边距 */
- :deep(.el-table__body td.el-table__cell) {
- padding: 0 !important;
- margin: 0 !important;
- height: 50px !important;
- line-height: 50px !important;
- }
- /* 表格圆角样式 */
- :deep(.el-table) {
- border-radius: 6px !important;
- overflow: hidden;
- }
- /* 表头圆角 */
- :deep(.el-table__header-wrapper) {
- border-radius: 6px 6px 0 0;
- overflow: hidden;
- }
- /* 表尾圆角 */
- :deep(.el-table__body-wrapper) {
- border-radius: 0 0 6px 6px;
- overflow: hidden;
- }
- /* 表头首列圆角 */
- :deep(.el-table__header th.el-table__cell:first-child) {
- border-radius: 6px 0 0 0 !important;
- }
- /* 表头末列圆角 */
- :deep(.el-table__header th.el-table__cell:last-child) {
- border-radius: 0 6px 0 0 !important;
- }
- /* 表尾首列圆角 */
- :deep(.el-table__body tr:last-child td.el-table__cell:first-child) {
- border-radius: 0 0 0 6px !important;
- }
- /* 表尾末列圆角 */
- :deep(.el-table__body tr:last-child td.el-table__cell:last-child) {
- border-radius: 0 0 6px 0 !important;
- }
- .pagination {
- margin-top: 16px;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- }
- // 暂无数据样式
- .noData {
- position: relative;
- height: 220px;
- /* 暂无数据样式 */
- .no_data {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 14px;
- color: #909399;
- text-align: center;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 8px;
- span {
- margin-top: 11%;
- }
- }
- }
- }
- </style>
|