Browse Source

🎈 perf: 优化管理员次数明细用户列展示

缩窄用户列宽并简化展示内容,避免信息拥挤影响列表可读性。

Made-with: Cursor
Pchen0 1 month ago
parent
commit
ae083535d7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/pages/admin/lepaoCountLedger/index.vue

+ 2 - 2
src/pages/admin/lepaoCountLedger/index.vue

@@ -82,7 +82,7 @@
           <a-table-column title="时间" :width="170">
             <template #cell="{ record }">{{ stramptoTime(record.created_at) }}</template>
           </a-table-column>
-          <a-table-column title="用户" :width="220">
+          <a-table-column title="用户" :width="200">
             <template #cell="{ record }">
               <a-space>
                 <a-avatar :size="28">
@@ -91,7 +91,7 @@
                     :alt="record.username || 'user-avatar'"
                   />
                 </a-avatar>
-                <span>{{ record.username || '-' }} ({{ record.student_num || '-' }})</span>
+                <span>{{ record.username || '-' }}</span>
               </a-space>
             </template>
           </a-table-column>