mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 20:06:44 +08:00
80 lines
1.7 KiB
Vue
80 lines
1.7 KiB
Vue
<template>
|
|
<div>
|
|
<Remark>
|
|
1.管理员个人中心首页<br/>
|
|
2.最新用户的操作
|
|
</Remark>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import studyItem from '@/components/Course/studyItem.vue'
|
|
export default {
|
|
name: 'ucManageIndex',
|
|
components:{studyItem},
|
|
data(){
|
|
return {
|
|
lastTabName:'course',
|
|
params:{name:'',type:''},
|
|
couresList:[
|
|
{name:'专职安全员安全培训',percentage:0,status:1},
|
|
{name:'专职安全员安全培训',percentage:60,status:2},
|
|
{name:'专职安全员安全培训',percentage:50,status:9},
|
|
{name:'专职安全员安全培训',percentage:20,status:9},
|
|
{name:'专职安全员安全培训',percentage:20,status:9}
|
|
]
|
|
}
|
|
},
|
|
created() {
|
|
this.$router.push('/course/manage');
|
|
},
|
|
methods:{
|
|
lastTabChange(tab,event){
|
|
console.log(tab.name);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.uc-shortcut{
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
i{font-size: 30px;color: #ffaa00;}
|
|
div{color: #565656;padding: 5px 0px 10px 0px;}
|
|
}
|
|
.uc-badge{
|
|
margin-top: 10px;
|
|
margin-right: 40px;
|
|
}
|
|
.uc-course{
|
|
display: flex;
|
|
justify-content: space-around;
|
|
border: 1px solid #F0F0F0;
|
|
padding: 10px;
|
|
.uc-course-img{
|
|
width: 200px;
|
|
img{
|
|
width: 200px;
|
|
border: 1px solid #F4F4F5;
|
|
}
|
|
}
|
|
.uc-course-info{
|
|
flex: 1;
|
|
line-height: 28px;
|
|
padding: 0px 10px;
|
|
.uc-course-name{
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
.uc-course-text{
|
|
color: #747474;
|
|
}
|
|
}
|
|
.uc-course-btns{
|
|
width: 150px;
|
|
}
|
|
}
|
|
</style>
|