feat(community): 评论改为独立二级页面 + 评论内容安全审核 + 评论数按实发实时纠正 #6

Merged
Blizzard merged 5 commits from feat/dev into main 2026-08-03 08:50:52 +00:00
Showing only changes of commit d1f4755dc6 - Show all commits
+6 -3
View File
@@ -59,10 +59,13 @@ page{display:flex;flex-direction:column;height:100vh;overflow:hidden;background:
}
.cm-cancel{display:flex;align-items:center}
.cm-bar-row{display:flex;align-items:flex-end;gap:var(--sp-3)}
/* 起始就是单行高度(显式 height 盖掉全局 textarea 的 88rpx,避免「先高一下再缩成单行」的抖动),
auto-height 只在文字换行时把它顶高;超过 max 就内部滚动 */
.cm-ta{
flex:1;min-width:0;box-sizing:border-box;min-height:72rpx;max-height:300rpx;height:auto;
padding:var(--sp-3) var(--sp-4);background:var(--surface-2);border-radius:var(--r-md);
font-size:var(--fs-md);line-height:1.5;
flex:1;min-width:0;box-sizing:border-box;
height:72rpx;min-height:72rpx;max-height:280rpx;
padding:16rpx var(--sp-4);background:var(--surface-2);border-radius:var(--r-md);
font-size:var(--fs-md);line-height:1.4;
}
.cm-pic{flex:none;display:flex;align-items:center;color:var(--muted);height:72rpx}
.cm-pic.disabled{opacity:.35}