我的授课记录

This commit is contained in:
lmj
2022-12-08 15:43:11 +08:00
parent 3395125f18
commit 39f0a45604
3 changed files with 116 additions and 1 deletions

View File

@@ -0,0 +1,110 @@
<template>
<div style="padding: 12px 32px 10px 12px;">
<div style="display: flex;justify-content: flex-start;">
<div style="margin-left:10px"><el-input placeholder="名称关键字" clearable></el-input></div>
<div style="padding-left: 10px;"><el-button type="primary" icon="el-icon-search">搜索</el-button></div>
<div style="padding: 0px 5px;"><el-button icon="el-icon-refresh-right" type="primary" >重置</el-button></div>
</div>
<div class="Export">
<div style="padding-left: 10px;"><el-button type="primary" icon="el-icon-search" size="small" round>导出</el-button></div>
<div style="padding: 0px 5px;"><el-button icon="el-icon-refresh-right" type="primary" size="small" round>导出学员信息</el-button></div>
</div>
<div style="margin-top:20px;">
<el-table :data="pageData" border stripe>
<el-table-column
label="课程时间"
prop="time"
width="200px">
</el-table-column>
<el-table-column
label="课程名称"
prop="courseName"
width="200px">
</el-table-column>
<el-table-column
label="开课场地"
prop="sysType"
width="240px">
</el-table-column>
<el-table-column
label="所属课程"
prop="status"
width="120px">
</el-table-column>
<el-table-column
label="所属项目"
prop="courseUser"
></el-table-column>
<el-table-column
label="所属路径"
prop="auditTime"
width="200px"
></el-table-column>
<el-table-column
label="学习总人数"
prop="auditRemark"
width="100px"
></el-table-column>
<el-table-column
label="时长(分钟)"
width="100px"
prop="studynum"
></el-table-column>
<el-table-column
label="评分"
width="100px"
prop="pf"
></el-table-column>
<el-table-column
label="操作"
align="center"
width="110px"
prop="cz"
fixed="right"
></el-table-column>
</el-table>
</div>
</div>
</template>
<script>
export default {
data(){
return {
pageData:[{
time:'2022-10-30 13:00:00',
courseName:'时间管理',
sysType:'核心能力大楼培训',
status:'管理者课程',
courseUser:'管理者进阶-腾飞班K1',
auditTime:'产品经理路径管理',
auditRemark:'35',
studynum:'120',
pf:'4.5',
cz:'导出学员信息'
},
{
time:'2022-10-30 13:00:00',
courseName:'时间管理',
sysType:'核心能力大楼培训',
status:'管理者课程',
courseUser:'管理者进阶-腾飞班K1',
auditTime:'产品经理路径管理',
auditRemark:'35',
studynum:'120',
pf:'4.5',
cz:'导出学员信息'
}
]
}
}
}
</script>
<style lang="scss" scoped>
.Export{
display: flex;
padding-top: 10px;
}
</style>