提交 78614648 编写于 作者: 杨广俊's avatar 杨广俊

组件2

上级 d28bf4ed
...@@ -30,7 +30,6 @@ export default { ...@@ -30,7 +30,6 @@ export default {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
span { span {
// display: flex;
padding: px2rem(20px) 0 px2rem(15px); padding: px2rem(20px) 0 px2rem(15px);
font-size: px2rem(18px); font-size: px2rem(18px);
font-weight: 500; font-weight: 500;
......
<template> <template>
<section > <section class="show-wrapper">
<span></span> <article class="show-wrapper-all" :class="{'border-top': showTopBorder}">
<span @click="showAllItem">{{noMoreText}}</span> <span class="show-wrapper-all-item" @click="showAllItem">{{noMoreText}}</span>
</article>
</section> </section>
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
noMoreText: '查看全部'
} }
}, },
props: { props: {
showTopBorder: {
type: Boolean,
default: true
},
noMoreText: {
type: String,
default: '查看全部'
},
showIndex: { showIndex: {
type: Number, type: Number,
default: 0 default: 0
...@@ -28,5 +37,24 @@ export default { ...@@ -28,5 +37,24 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import '../../style/mixin.scss'; @import '../../style/mixin.scss';
// @import '../../style/global.scss'; // @import '../../style/global.scss';
.show-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
&-all {
height: px2rem(40px);
width: px2rem(345px);
&-item {
display: block;
margin-top: px2rem(11px);
text-align: center;
font-size: px2rem(11px);
color: #999999;
}
}
}
.border-top {
border-top: px2rem(1px) solid rgba(240,240,240,1);
}
</style> </style>
...@@ -21,15 +21,15 @@ ...@@ -21,15 +21,15 @@
<mt-tab-container v-model="selected"> <mt-tab-container v-model="selected">
<mt-tab-container-item id="0"> <mt-tab-container-item id="0">
<!-- 课程 --> <!-- 课程 -->
<SplitLine borderWidth="3px"/> <!-- <SplitLine borderWidth="3px"/> -->
<!-- 五分钟医学 --> <!-- 五分钟医学 -->
<SplitLine borderWidth="3px"/> <!-- <SplitLine borderWidth="3px"/> -->
<!-- 讲师 --> <!-- 讲师 -->
<SplitLine borderWidth="3px"/> <!-- <SplitLine borderWidth="3px"/> -->
<!-- 健康漫画 --> <!-- 健康漫画 -->
<ShowAllItem/>
<NoMoreItem/> <NoMoreItem/>
<GroupTitle/> <GroupTitle/>
<ShowAllItem/>
</mt-tab-container-item> </mt-tab-container-item>
<mt-tab-container-item id="1"> <mt-tab-container-item id="1">
bbbb bbbb
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册