后期修改完善,上线版本

This commit is contained in:
2025-11-12 18:11:11 +08:00
parent c54f9c9976
commit 8f57683dd5
98 changed files with 2110 additions and 867 deletions

View File

@ -8,8 +8,8 @@
{{item.username || ''}}
</div>
<div class="date-wrap flex-top-left">
<img src="/ToolDetail/icon_clock1.png" alt="" style="width: 16px; height: 16px;" />
<span style="line-height: 18px">{{ item.createdAt || '' }}</span>
<img src="/ToolDetail/icon_clock1.png" alt="" />
<span class="line-h-18">{{ item.createdAt || '' }}</span>
</div>
<p class="comment-text">
{{ item.content || '' }}
@ -38,6 +38,9 @@ export default {
</script>
<style scoped lang="scss">
.line-h-18 {
line-height: 18px;
}
.comment-item-box {
gap: 15px;
padding: 30px 0;
@ -54,22 +57,26 @@ export default {
.comment-author {
font-size: 18px;
font-weight: 600;
font-family: 'Poppins-SemiBold', serif;
font-family: 'Poppins-SemiBold';
color: #1E293B;
line-height: 27px;
height: 27px;
}
.date-wrap {
gap: 8px;
font-family: 'Poppins-Regular', serif;
font-family: 'Poppins-Regular';
font-size: 14px;
color: #869EC2;
margin-top: 3px;
img {
width: 16px;
height: 16px;
}
}
.comment-text {
margin-bottom: 0;
margin-top: 13px;
font-family: 'Poppins-Regular', serif;
font-family: 'Poppins-Regular';
color: #64748B;
}
}