Files
learning-system-portal/src/views/article/Input.vue
2022-05-29 18:56:34 +08:00

63 lines
1022 B
Vue

<template>
<div>
<Remark>
1.写文章<br/>
2.类似<br/>
</Remark>
<div style="height: 100px;"></div>
</div>
</template>
<script>
export default {
name: 'articleInput',
components:{articleItems},
data(){
return {
article:{name:'',type:'',keyword:''}
}
},
methods:{
toDetail(item){
}
}
}
</script>
<style scoped lang="scss">
.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>