暂时提交

feasure-livedata
lld 2026-03-25 20:39:59 +08:00
parent 17e688b683
commit fd5975ddd3
1 changed files with 8 additions and 9 deletions

View File

@ -59,13 +59,19 @@
</view> </view>
<!-- 底部提示 --> <!-- 底部提示 -->
<view class="bottom-tip">只展示最近7天的消息</view> <uni-divider-text margin="10rpx 0"
width="50%"
font-size="24rpx"
lineText="只展示最近7天的消息"/>
</view> </view>
</template> </template>
<script> <script>
import UniDividerText from "../../components/uni-divider/uni-divider-text.vue";
export default { export default {
components: {
UniDividerText
},
data() { data() {
return { return {
messageList: [ messageList: [
@ -288,12 +294,5 @@ export default {
} }
} }
/* 底部提示 */
.bottom-tip {
text-align: center;
font-size: 26rpx;
color: #999;
padding: 40rpx 0;
}
</style> </style>