update: 我的举报

This commit is contained in:
mixtan 2025-08-13 13:50:43 +08:00
parent 9e83a44303
commit 6543a90ee0

View File

@ -1,7 +1,27 @@
<template> <template>
<view> <view class="main">
111 <view class="list">
<view class="item">
<view class="header">
<view class="username">fdfdf</view>
<view class="more">fdfdf</view>
</view>
<view class="body">
<view class="left">
<image src="" class="img" />
</view>
<view class="right">
<view class="desc">fdfd</view>
<view class="type">fdfd</view>
<view class="time">fdfd</view>
</view>
</view>
<view class="footer">
fdfsdfds
</view>
</view>
</view> </view>
</view>
</template> </template>
<script> <script>
@ -10,6 +30,56 @@
} }
</script> </script>
<style lang="sass" scoped> <style lang="scss" scoped>
.list{
padding: 20rpx;
.item{
padding: 12rpx;
.header{
display: flex;
align-items: center;
justify-content: space-between;
}
.body{
display: flex;
align-items: center;
justify-content: space-between;
.left{
.img{
width: 128rpx;
height: 128rpx;
}
.username{
color: #222;
}
.more{
color: #666;
}
}
.right{
.desc{
color: #222;
}
.type{
color: #666;
}
.time{
color: #666;
}
}
}
.footer{
display: flex;
align-items: center;
padding: 4rpx 8rpx;
border-radius: 8rpx;
background: #222;
color: #666;
.icon{
margin-right: 12rpx;
}
}
}
}
</style> </style>