You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
2.3 KiB
127 lines
2.3 KiB
<template>
|
|
<view class="tui-nomore-class tui-loadmore-none" v-if="visible">
|
|
<view :class="{ 'tui-nomore-dot': isDot, 'tui-nomore': !isDot, 'tui-nomore-noline': !line }">
|
|
<view :style="{ background: bgcolor }" :class="[isDot ? 'tui-dot-text' : 'tui-nomore-text']">{{ isDot ? dotText : text }}</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'tuiNomore',
|
|
props: {
|
|
//是否可见
|
|
visible: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
//当前页面背景颜色
|
|
bgcolor: {
|
|
type: String,
|
|
default: '#fafafa'
|
|
},
|
|
//是否以圆点代替 "没有更多了"
|
|
isDot: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
//isDot为false时生效
|
|
text: {
|
|
type: String,
|
|
default: '没有更多了'
|
|
},
|
|
line: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
dotText: '●'
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tui-loadmore-none {
|
|
width: 60%;
|
|
margin: 1.5em auto;
|
|
line-height: 1.5em;
|
|
font-size: 24rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tui-nomore {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 10rpx;
|
|
padding-bottom: 6rpx;
|
|
}
|
|
|
|
.tui-nomore::before {
|
|
content: ' ';
|
|
position: absolute;
|
|
border-bottom: 1rpx solid $text-color-assist;
|
|
-webkit-transform: scaleY(0.5);
|
|
transform: scaleY(0.5);
|
|
width: 100%;
|
|
top: 18rpx;
|
|
left: 0;
|
|
}
|
|
|
|
.tui-nomore-noline::before {
|
|
border-bottom: 0 !important;
|
|
}
|
|
|
|
.tui-nomore-text {
|
|
color: $text-color-assist;
|
|
font-size: $font-size-base;
|
|
text-align: center;
|
|
padding: 0 10rpx;
|
|
height: 36rpx;
|
|
line-height: 36rpx;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.tui-nomore-dot {
|
|
position: relative;
|
|
text-align: center;
|
|
-webkit-display: flex;
|
|
display: flex;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
margin-top: 10rpx;
|
|
padding-bottom: 6rpx;
|
|
}
|
|
|
|
.tui-nomore-dot::before {
|
|
content: '';
|
|
position: absolute;
|
|
border-bottom: 1rpx solid $text-color-assist;
|
|
-webkit-transform: scaleY(0.5);
|
|
transform: scaleY(0.5);
|
|
width: 360rpx;
|
|
top: 18rpx;
|
|
}
|
|
|
|
.tui-dot-text {
|
|
position: relative;
|
|
color: $text-color-assist;
|
|
font-size: 10px;
|
|
text-align: center;
|
|
width: 50rpx;
|
|
height: 36rpx;
|
|
line-height: 36rpx;
|
|
-webkit-transform: scale(0.8);
|
|
transform: scale(0.8);
|
|
-webkit-transform-origin: center center;
|
|
transform-origin: center center;
|
|
z-index: 1;
|
|
}
|
|
</style>
|
|
|