You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
227 lines
10 KiB
227 lines
10 KiB
<template>
|
|
<div>
|
|
<el-dialog :visible.sync="courseDialog" append-to-body :close-on-click-modal="false" :title="lab.position+' '+lab.name">
|
|
<el-table :data="tableData" :span-method="objectSpanMethod" @cell-click="cClick" :cell-style="cStyle">
|
|
<el-table-column :label="tableLabel" align="center ">
|
|
<el-table-column prop="daytime" label="" fixed align="center" width="60"></el-table-column>
|
|
<el-table-column prop="time" label="" fixed align="center" width="100"></el-table-column>
|
|
<el-table-column :index="1" prop="Monday" label="星期一" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Monday.name}} <br>
|
|
{{scope.row.Monday.classes}} {{scope.row.Monday.population}}<br>
|
|
{{scope.row.Monday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="2" prop="Tuesday" label="星期二" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Tuesday.name}} <br>
|
|
{{scope.row.Tuesday.classes}} {{scope.row.Tuesday.population}}<br>
|
|
{{scope.row.Tuesday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="3" prop="Wednesday" label="星期三" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Wednesday.name}} <br>
|
|
{{scope.row.Wednesday.classes}} {{scope.row.Wednesday.population}}<br>
|
|
{{scope.row.Wednesday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="4" prop="Thursday" label="星期四" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Thursday.name}} <br>
|
|
{{scope.row.Thursday.classes}} {{scope.row.Thursday.population}}<br>
|
|
{{scope.row.Thursday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="5" prop="Friday" label="星期五" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Friday.name}} <br>
|
|
{{scope.row.Friday.classes}} {{scope.row.Friday.population}}<br>
|
|
{{scope.row.Friday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="6" prop="Saturday" label="星期六" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Saturday.name}} <br>
|
|
{{scope.row.Saturday.classes}} {{scope.row.Saturday.population}}<br>
|
|
{{scope.row.Saturday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :index="7" prop="Sunday" label="星期日" align="center">
|
|
<template slot-scope="scope">
|
|
{{scope.row.Sunday.name}} <br>
|
|
{{scope.row.Sunday.classes}} {{scope.row.Sunday.population}}<br>
|
|
{{scope.row.Sunday.software}}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import navBar from "~/components/teacher/navBar";
|
|
import {get, post} from "~/utils";
|
|
|
|
export default {
|
|
name: "tb_course",
|
|
components: {navBar},
|
|
props: ['tableLabel', 'cClick', 'cStyle',],
|
|
data() {
|
|
return {
|
|
item: '',
|
|
lab: {
|
|
name: '',
|
|
position: ''
|
|
},
|
|
courseDialog:false,
|
|
data: [],
|
|
tableData: [
|
|
{
|
|
index: 1, daytime: '上午', time: '第一节', Monday: '', Tuesday: '', Wednesday: '', Thursday: '',
|
|
Friday: '', Saturday: '', Sunday: ''
|
|
},
|
|
{
|
|
index: 2, daytime: '上午', time: '第二节', Monday: '', Tuesday: '', Wednesday: '', Thursday: '',
|
|
Friday: '', Saturday: '', Sunday: ''
|
|
},
|
|
{
|
|
index: 3, daytime: '下午', time: '第三节', Monday: '', Tuesday: '', Wednesday: '', Thursday: '',
|
|
Friday: '', Saturday: '', Sunday: ''
|
|
},
|
|
{
|
|
index: 4, daytime: '下午', time: '第四节', Monday: '', Tuesday: '', Wednesday: '', Thursday: '',
|
|
Friday: '', Saturday: '', Sunday: ''
|
|
},
|
|
{
|
|
index: 5, daytime: '晚上', time: '第五节', Monday: '', Tuesday: '', Wednesday: '', Thursday: '',
|
|
Friday: '', Saturday: '', Sunday: ''
|
|
}
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
objectSpanMethod({row, column, rowIndex, columnIndex}) {
|
|
if (columnIndex === 0) {
|
|
if (rowIndex % 2 === 0) {
|
|
return {
|
|
rowspan: 2,
|
|
colspan: 1
|
|
};
|
|
} else {
|
|
return {
|
|
rowspan: 0,
|
|
colspan: 0
|
|
};
|
|
}
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
console.log('aaaaaaaaaaaaaaa')
|
|
// this.data = [
|
|
// [
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "Web开发",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// },
|
|
// {
|
|
// "ucId": 1,
|
|
// "name": "课程设计",
|
|
// "software": "IDEA",
|
|
// "year": "2019",
|
|
// "semester": 2,
|
|
// "population": 50,
|
|
// "classes": "17软件工程6班",
|
|
// "remind": "",
|
|
// "ishavedocuments": 1,
|
|
// "uid": 1
|
|
// }
|
|
// ]
|
|
// ]
|
|
for (let i = 0; i < this.data.length; i++) {
|
|
this.tableData[i].Monday = this.data[i][0]
|
|
this.tableData[i].Tuesday = this.data[i][1]
|
|
this.tableData[i].Wednesday = this.data[i][2]
|
|
this.tableData[i].Thursday = this.data[i][3]
|
|
this.tableData[i].Friday = this.data[i][4]
|
|
this.tableData[i].Saturday = this.data[i][5]
|
|
this.tableData[i].Sunday = this.data[i][6]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|