Files
vpUni/.svn/pristine/b2/b2d7c910d8013ddd6f7e3c74d547670f402fa7ee.svn-base
2026-03-09 16:39:03 +08:00

57 lines
1.9 KiB
Plaintext

<template>
<view style="padding: 20rpx;">
<view class="" @click="Service.GoPage('/pages/article/articleCom')"
style=" padding: 20rpx; margin-top: 20rpx; border-radius: 20rpx; box-shadow: 0 0 10rpx 4rpx #e2e2e2; ">
<view class="" style="display: flex; align-items: center; ">
<view class="tag"
style=" color: #fff; border-radius: 12rpx; background-color: #FF6B35; padding: 4rpx 20rpx; ">
<img :src="Service.GetIconImg('/static/index/community/top.png')"
style="width: 30rpx; height: 30rpx; " alt="" />
<text style="margin-left: 10rpx; font-size: 24rpx;">置顶</text>
</view>
<text style="font-size: 32rpx; font-weight: 600;">【重要】社区发帖规范更新通知</text>
</view>
<view class=""
style=" margin: 16rpx 0; color: #666666; font-size: 26rpx; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; ">
为营造健康社区环境,即日起发帖需实名认证。请各位用户知悉并配合执行新的发帖规范。
</view>
<view class="" style=" font-size: 22rpx; color: #999999; display: flex; align-items: center;">
<text>2小时前</text>
<text style="margin: 0 15rpx;">·</text>
<view class="" style="display: flex;align-items: center;">
<img :src="Service.GetIconImg('/static/index/community/see.png')"
style="width: 30rpx; height: 30rpx; " alt="" />
<text style="margin-left: 10rpx;">1200人阅读</text>
</view>
</view>
</view>
<up-loadmore :status="status" />
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
import { Service } from "@/Service/Service"
import { ref } from "vue";
let status = ref('nomore')
onLoad(() => {
});
onShow(() => {
});
</script>
<style lang="scss">
.tag {
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
font-size: 24rpx;
}
</style>