소유자 권한 보호와 멤버 목록 등급 표시 v1.5.8

This commit is contained in:
2026-05-27 10:15:34 +09:00
parent e78e09f3fd
commit d7a3149ea1
10 changed files with 60 additions and 8 deletions

View File

@@ -512,7 +512,7 @@ const formatRelativeTime = (value) => {
<thead class="admin-members__table-head border-b border-line text-xs uppercase tracking-[0.02em] text-[#15171a]">
<tr>
<th class="admin-members__cell w-[32%] py-4 pr-5 font-semibold">{{ memberCountLabel }}</th>
<th class="admin-members__cell w-[15%] px-5 py-4 font-semibold">상태</th>
<th class="admin-members__cell w-[15%] px-5 py-4 font-semibold">등급/상태</th>
<th class="admin-members__cell w-[16%] px-5 py-4 font-semibold">댓글 작성</th>
<th class="admin-members__cell w-[17%] px-5 py-4 font-semibold">접속 IP</th>
<th class="admin-members__cell w-[20%] py-4 pl-5 font-semibold">가입일</th>
@@ -549,7 +549,13 @@ const formatRelativeTime = (value) => {
</div>
</td>
<td class="admin-members__cell px-5 py-5 text-[#2f343b]">
<span class="admin-members__status text-sm text-[#394047]">
<span class="admin-members__role block text-sm font-semibold text-[#15171a]">
{{ member.role || '멤버' }}
</span>
<span
v-if="member.activityStatus !== '활성'"
class="admin-members__status mt-1 block text-xs font-medium text-red-300"
>
{{ member.activityStatus }}
</span>
</td>