mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 11:56:44 +08:00
63 lines
1022 B
Vue
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>
|