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