parent
6de3eb9d23
commit
588df7ce32
10 changed files with 1649 additions and 1481 deletions
@ -1,90 +1,120 @@ |
||||
<template> |
||||
<div> |
||||
<el-table |
||||
ref="table" |
||||
class="table" |
||||
:data="listData" |
||||
stripe |
||||
> |
||||
<el-table-column prop="id" label="次序" width="60" align="center" type="index"></el-table-column> |
||||
<el-table-column prop="curriculumName" label="课程名称" align="center"></el-table-column> |
||||
<el-table-column prop="experimentalName" label="考核名称" align="center"></el-table-column> |
||||
<el-table-column prop="projectName" label="实验项目名称" align="center"></el-table-column> |
||||
<el-table-column prop="score" width="60" label="得分" align="center"></el-table-column> |
||||
<el-table-column prop="className" width="100" label="实验班级" align="center"></el-table-column> |
||||
<el-table-column prop="timeSum" width="80" label="耗时" align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ scope.row.timeSum }}min |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="startTime" width="160" label="起始时间" align="center"></el-table-column> |
||||
<el-table-column prop="submitTime" width="160" label="结束时间" align="center"></el-table-column> |
||||
<el-table-column label="操作" width="100" align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text" @click="toReport(scope.row)">实验成绩报告</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination background :current-page="page" layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"></el-pagination> |
||||
</div> |
||||
<div> |
||||
<el-table ref="table" |
||||
class="table" |
||||
:data="listData" |
||||
stripe> |
||||
<el-table-column prop="id" |
||||
label="次序" |
||||
width="60" |
||||
align="center" |
||||
type="index"></el-table-column> |
||||
<el-table-column prop="curriculumName" |
||||
label="课程名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="experimentalName" |
||||
label="考核名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="projectName" |
||||
label="实验项目名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="score" |
||||
width="60" |
||||
label="得分" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="className" |
||||
width="100" |
||||
label="实验班级" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="timeSum" |
||||
width="80" |
||||
label="耗时" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ scope.row.timeSum }}min |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="startTime" |
||||
width="160" |
||||
label="起始时间" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="submitTime" |
||||
width="160" |
||||
label="结束时间" |
||||
align="center"></el-table-column> |
||||
<el-table-column label="操作" |
||||
width="100" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text" |
||||
@click="toReport(scope.row)">实验成绩报告</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination background |
||||
:current-page="page" |
||||
layout="total, prev, pager, next" |
||||
:total="total" |
||||
@current-change="handleCurrentChange"></el-pagination> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { mapActions } from "vuex"; |
||||
export default { |
||||
props: ["curriculumId"], |
||||
data() { |
||||
return { |
||||
listData: [], |
||||
page: 1, |
||||
pageSize: 10, |
||||
total: 0 |
||||
}; |
||||
props: ['mallId', 'curriculumId'], |
||||
data () { |
||||
return { |
||||
listData: [], |
||||
page: 1, |
||||
pageSize: 10, |
||||
total: 0 |
||||
}; |
||||
}, |
||||
watch: { |
||||
mallId: function (val) { |
||||
this.initData(); |
||||
}, |
||||
watch: { |
||||
curriculumId: function(val) { |
||||
this.initData(); |
||||
} |
||||
}, |
||||
mounted () { |
||||
this.page = 1 |
||||
this.getData() |
||||
}, |
||||
methods: { |
||||
...mapActions({ |
||||
setCurriculum: "project/setCurriculum" |
||||
}), |
||||
tableRowStyle ({ row, column, rowIndex, columnIndex }) { |
||||
if (rowIndex % 2 === 0) { |
||||
return "background-color: #FFF"; |
||||
} else { |
||||
return "background-color: #F5F2FF"; |
||||
} |
||||
}, |
||||
mounted() { |
||||
this.page = 1 |
||||
this.getData() |
||||
handleCurrentChange (val) { |
||||
this.page = val; |
||||
this.getData(); |
||||
}, |
||||
methods: { |
||||
...mapActions({ |
||||
setCurriculum: "project/setCurriculum" |
||||
}), |
||||
tableRowStyle({ row, column, rowIndex, columnIndex }) { |
||||
if (rowIndex % 2 === 0) { |
||||
return "background-color: #FFF"; |
||||
} else { |
||||
return "background-color: #F5F2FF"; |
||||
} |
||||
}, |
||||
handleCurrentChange(val) { |
||||
this.page = val; |
||||
this.getData(); |
||||
}, |
||||
getData() { |
||||
this.$post(this.api.queryAssessmentByStudent, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
curriculumId: this.curriculumId |
||||
}).then(res => { |
||||
this.listData = res.page.records; |
||||
this.total = res.page.total; |
||||
}).catch(err => {}); |
||||
}, |
||||
toReport(row) { |
||||
this.setCurriculum(this.curriculumId) |
||||
this.$router.push(`show?reportId=${row.reportId}`); |
||||
} |
||||
getData () { |
||||
this.$post(this.api.queryAssessmentByStudent, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
mallId: this.mallId, |
||||
curriculumId: this.curriculumId |
||||
}).then(res => { |
||||
this.listData = res.page.records; |
||||
this.total = res.page.total; |
||||
}).catch(err => { }); |
||||
}, |
||||
toReport (row) { |
||||
this.setCurriculum(this.curriculumId) |
||||
this.$router.push(`show?reportId=${row.reportId}`); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="scss" scopted> |
||||
|
||||
</style> |
@ -1,79 +1,111 @@ |
||||
<template> |
||||
<div> |
||||
<el-table :data="listData" stripe> |
||||
<el-table-column prop="id" label="次序" width="60" align="center" type="index"></el-table-column> |
||||
<el-table-column prop="curriculumName" label="课程名称" align="center"></el-table-column> |
||||
<el-table-column prop="projectName" label="实验项目名称" align="center"></el-table-column> |
||||
<el-table-column prop="hightScore" width="120" label="实验最高得分" align="center"></el-table-column> |
||||
<el-table-column prop="practiceNum" label="练习次数" width="80" align="center"></el-table-column> |
||||
<el-table-column prop="duration" width="140" label="累计实验时长(小时)" align="center"></el-table-column> |
||||
<el-table-column prop="lastTime" width="160" label="最近实验时间" align="center"></el-table-column> |
||||
<el-table-column prop="creationTime" width="90" label="操作" align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text" @click="toDetails(scope.row)">实验情况</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination background :current-page="page" layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"></el-pagination> |
||||
</div> |
||||
<div> |
||||
<el-table :data="listData" |
||||
stripe> |
||||
<el-table-column prop="id" |
||||
label="次序" |
||||
width="60" |
||||
align="center" |
||||
type="index"></el-table-column> |
||||
<el-table-column prop="curriculumName" |
||||
label="课程名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="projectName" |
||||
label="实验项目名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="hightScore" |
||||
width="120" |
||||
label="实验最高得分" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="practiceNum" |
||||
label="练习次数" |
||||
width="80" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="duration" |
||||
width="140" |
||||
label="累计实验时长(小时)" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="lastTime" |
||||
width="160" |
||||
label="最近实验时间" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="creationTime" |
||||
width="90" |
||||
label="操作" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text" |
||||
@click="toDetails(scope.row)">实验情况</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination background |
||||
:current-page="page" |
||||
layout="total, prev, pager, next" |
||||
:total="total" |
||||
@current-change="handleCurrentChange"></el-pagination> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { mapActions } from "vuex"; |
||||
export default { |
||||
props: ["curriculumId"], |
||||
data() { |
||||
return { |
||||
listData: [], |
||||
page: 1, |
||||
pageSize: 10, |
||||
total: 0 |
||||
}; |
||||
props: ['mallId', 'curriculumId'], |
||||
data () { |
||||
return { |
||||
listData: [], |
||||
page: 1, |
||||
pageSize: 10, |
||||
total: 0 |
||||
}; |
||||
}, |
||||
watch: { |
||||
mallId: function (val) { |
||||
this.initData(); |
||||
}, |
||||
watch: { |
||||
curriculumId: function(val) { |
||||
this.initData(); |
||||
} |
||||
}, |
||||
mounted () { |
||||
this.initData() |
||||
}, |
||||
methods: { |
||||
...mapActions({ |
||||
setCurriculum: "project/setCurriculum" |
||||
}), |
||||
tableRowStyle ({ row, column, rowIndex, columnIndex }) { |
||||
if (rowIndex % 2 === 0) { |
||||
return "background-color: #FFF"; |
||||
} else { |
||||
return "background-color: #F5F2FF"; |
||||
} |
||||
}, |
||||
mounted() { |
||||
handleCurrentChange (val) { |
||||
this.page = val; |
||||
this.getData(); |
||||
}, |
||||
getData () { |
||||
this.$post(this.api.queryPracticeByStudent, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
mallId: this.mallId, |
||||
curriculumId: this.curriculumId |
||||
}).then(res => { |
||||
this.listData = res.page.records; |
||||
this.total = res.page.total; |
||||
}).catch(err => { }); |
||||
}, |
||||
initData () { |
||||
this.page = 1 |
||||
this.getData() |
||||
}, |
||||
methods: { |
||||
...mapActions({ |
||||
setCurriculum: "project/setCurriculum" |
||||
}), |
||||
tableRowStyle({ row, column, rowIndex, columnIndex }) { |
||||
if (rowIndex % 2 === 0) { |
||||
return "background-color: #FFF"; |
||||
} else { |
||||
return "background-color: #F5F2FF"; |
||||
} |
||||
}, |
||||
handleCurrentChange(val) { |
||||
this.page = val; |
||||
this.getData(); |
||||
}, |
||||
getData() { |
||||
this.$post(this.api.queryPracticeByStudent, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
curriculumId: this.curriculumId |
||||
}).then(res => { |
||||
this.listData = res.page.records; |
||||
this.total = res.page.total; |
||||
}).catch(err => {}); |
||||
}, |
||||
toDetails(row) { |
||||
this.setCurriculum(this.curriculumId) |
||||
this.$router.push(`/record/details?curriculumId=${row.curriculumId}&projectId=${row.projectId}`); |
||||
} |
||||
toDetails (row) { |
||||
this.setCurriculum(this.curriculumId) |
||||
this.$router.push(`/record/details?curriculumId=${row.curriculumId}&projectId=${row.projectId}`); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
|
||||
</style> |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue