parent
30697a8483
commit
7e07967092
@ -1,13 +1,248 @@
|
|||||||
<template>
|
<template>
|
||||||
<h1>课程管理</h1>
|
<div>
|
||||||
|
<el-card class="box-card">
|
||||||
|
<el-form ref="form" :model="form" label-width="80px" size="mini" class="demo-form-inline" :inline="true">
|
||||||
|
<el-form-item label="学生姓名">
|
||||||
|
<el-input v-model="form.sname" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="班级">
|
||||||
|
<el-input v-model="form.className" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="课程名称">
|
||||||
|
<el-input v-model="form.courseName" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="课程类型">
|
||||||
|
<el-input v-model="form.courseType" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item size="large">
|
||||||
|
<el-button type="primary" @click="search">查询</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="box-card" style="margin-top: 10px;">
|
||||||
|
<el-table
|
||||||
|
:data="tableData"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-table-column
|
||||||
|
label="学号"
|
||||||
|
width="80">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<i class="el-icon-time"></i>
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.sid }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="姓名"
|
||||||
|
width="120">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.sname }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="班级"
|
||||||
|
width="200">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.className }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="课程名称"
|
||||||
|
width="200">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.cname }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="课程类型"
|
||||||
|
width="150">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.ctype }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="平时成绩"
|
||||||
|
width="150">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div slot="reference" class="name-wrapper">
|
||||||
|
<el-tag size="medium" :type="scope.row.middleGrade > 60 ? 'success' : 'error'">{{ scope.row.middleGrade }}</el-tag>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="期末成绩"
|
||||||
|
width="150">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div slot="reference" class="name-wrapper">
|
||||||
|
<el-tag size="medium" :type="scope.row.endGrade > 60 ? 'success' : 'error'">{{ scope.row.endGrade }}</el-tag>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" width="200">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
@click="handleEdit(scope.$index, scope.row)">编辑</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination
|
||||||
|
style="text-align: center;margin-top: 10px;"
|
||||||
|
hide-on-single-page
|
||||||
|
background
|
||||||
|
:current-page="currentPage"
|
||||||
|
:page-size="10"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
layout="prev, pager, next, total"
|
||||||
|
:total="total">
|
||||||
|
</el-pagination>
|
||||||
|
</el-card>
|
||||||
|
<el-drawer
|
||||||
|
title="录入成绩"
|
||||||
|
:before-close="handleClose"
|
||||||
|
:visible.sync="dialog"
|
||||||
|
direction="rtl"
|
||||||
|
custom-class="demo-drawer"
|
||||||
|
ref="drawer"
|
||||||
|
>
|
||||||
|
<div class="demo-drawer__content">
|
||||||
|
<el-form ref="addForm" :model="addForm" label-width="80px" size="mini">
|
||||||
|
<el-form-item label="学号" >
|
||||||
|
<el-input v-model="addForm.sid" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="姓名">
|
||||||
|
<el-input v-model="addForm.sname" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="课程名称">
|
||||||
|
<el-input v-model="addForm.cname" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="平时成绩">
|
||||||
|
<el-input-number v-model="addForm.middleGrade" :min="0" :max="100" label="平时成绩"></el-input-number>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="最终成绩">
|
||||||
|
<el-input-number v-model="addForm.endGrade" :min="0" :max="100" label="最终成绩"></el-input-number>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<div class="demo-drawer__footer">
|
||||||
|
<el-button @click="cancelForm">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="$refs.drawer.closeDrawer()" :loading="loading">{{ loading ? '提交中 ...' : "保存" }}</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-drawer>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
|
data() {
|
||||||
}
|
return {
|
||||||
|
currentPage: 1,
|
||||||
|
total: 0,
|
||||||
|
dialog: false,
|
||||||
|
loading: false,
|
||||||
|
title: "新增学生",
|
||||||
|
tableData: [{
|
||||||
|
sid: "",
|
||||||
|
sname: "",
|
||||||
|
className: "",
|
||||||
|
cname: "",
|
||||||
|
ctype: "",
|
||||||
|
endGrade: "",
|
||||||
|
middleGrade: "",
|
||||||
|
cid: ""
|
||||||
|
}],
|
||||||
|
form: {
|
||||||
|
sname: '',
|
||||||
|
className: '',
|
||||||
|
courseName: '',
|
||||||
|
courseType: '',
|
||||||
|
},
|
||||||
|
addForm: {
|
||||||
|
sid: "",
|
||||||
|
sname: "",
|
||||||
|
className: "",
|
||||||
|
cname: "",
|
||||||
|
ctype: "",
|
||||||
|
endGrade: "",
|
||||||
|
middleGrade: "",
|
||||||
|
cid: "",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleEdit(index, row) {
|
||||||
|
console.log(row)
|
||||||
|
this.addForm = new Object(row)
|
||||||
|
this.dialog = true
|
||||||
|
this.isAdd = false
|
||||||
|
this.loading = false
|
||||||
|
},
|
||||||
|
handleCurrentChange(val){
|
||||||
|
this.currentPage = val
|
||||||
|
this.getAllStudent()
|
||||||
|
},
|
||||||
|
getAllStudent() {
|
||||||
|
this.$axios.post("/course/getStudentCourse?currentPage="+this.currentPage, this.form).then(resp => {
|
||||||
|
console.log(resp.data)
|
||||||
|
if (resp.data.code === 0) {
|
||||||
|
this.total = resp.data.pageTotal
|
||||||
|
this.tableData = resp.data.data
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
search(){
|
||||||
|
this.getAllStudent()
|
||||||
|
},
|
||||||
|
handleClose(done) {
|
||||||
|
if (this.loading) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.$confirm('确定要提交表单吗?')
|
||||||
|
.then(_ => {
|
||||||
|
this.loading = true;
|
||||||
|
this.timer = setTimeout(() => {
|
||||||
|
done();
|
||||||
|
this.$axios.post("/course/editGrade", this.addForm).then(resp => {
|
||||||
|
if(resp.data.code === 0){
|
||||||
|
this.$message({message: resp.data.message, type: "success"})
|
||||||
|
this.getAllStudent()
|
||||||
|
this.loading = false
|
||||||
|
this.addForm = {
|
||||||
|
sid: "",
|
||||||
|
sname: "",
|
||||||
|
className: "",
|
||||||
|
cname: "",
|
||||||
|
ctype: "",
|
||||||
|
endGrade: "",
|
||||||
|
middleGrade: "",
|
||||||
|
cid: ""
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
this.$message({message: resp.data.message, type: "error"})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, 1000);
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
console.log("close")
|
||||||
|
},
|
||||||
|
cancelForm() {
|
||||||
|
this.loading = false;
|
||||||
|
this.dialog = false;
|
||||||
|
this.addForm = {
|
||||||
|
sid: "",
|
||||||
|
sname: "",
|
||||||
|
className: "",
|
||||||
|
cname: "",
|
||||||
|
ctype: "",
|
||||||
|
endGrade: "",
|
||||||
|
middleGrade: "",
|
||||||
|
cid: ""
|
||||||
|
}
|
||||||
|
clearTimeout(this.timer);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getAllStudent()
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
|
|
||||||
</style>
|
|
Loading…
Reference in new issue