mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 19:06:43 +08:00
我的授课记录
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
:default-active="activeMenu"
|
||||
router
|
||||
active-text-color="#3379FB"
|
||||
:default-openeds="['manageTodo','manageFinish','teacherTodo','teacherFinish','myqa','notice','mystudy', 'course', 'exam', 'u001', 'u002', 'u003', 'u004']"
|
||||
:default-openeds="['manageTodo','manageFinish','teacherTodo','teacherFinish','myqa','notice','mystudy', 'course', 'exam', 'u001', 'u002', 'u003', 'u004','mylecnotes']"
|
||||
class="el-menu-vertical"
|
||||
@open="handleOpen"
|
||||
@close="handleClose"
|
||||
@@ -176,6 +176,10 @@
|
||||
<!-- <i class="el-icon-menu"></i> -->
|
||||
<span slot="title" class="textl">我开发的课程</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="/need/mylecnotes">
|
||||
<!-- <i class="el-icon-menu"></i> -->
|
||||
<span slot="title" class="textl">我的授课记录</span>
|
||||
</el-menu-item>
|
||||
<!--
|
||||
<el-menu-item index="u0032">
|
||||
<i class="el-icon-menu"></i>
|
||||
|
||||
@@ -55,6 +55,7 @@ export const pages=[
|
||||
{title:'待回答问题',path:'qareply',component:'qa/NeedReplys',hidden:false},
|
||||
{title:'已回答问题',path:'qafinish',component:'qa/TeacherList',hidden:false},
|
||||
{title:'我开发课程',path:'course',component:'course/TeacherList',hidden:false},
|
||||
{title:'我的授课记录',path:'mylecnotes',component:'course/Mylecnotes',hidden:false},
|
||||
{title:'待审核的课程',path:'waitaudit',component:'course/WaitAudit',hidden:true},
|
||||
{title:'已审核的课程',path:'waitaudited',component:'course/WaitAudited',hidden:true},
|
||||
]},
|
||||
|
||||
110
src/views/course/Mylecnotes.vue
Normal file
110
src/views/course/Mylecnotes.vue
Normal 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>
|
||||
Reference in New Issue
Block a user