feat(theme-4): sync inbox/announcements/presence/deposit from main
This commit is contained in:
@@ -196,6 +196,7 @@ onMounted(fetchList);
|
||||
<table v-if="filteredItems.length" class="data-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="text-align: center; width: 60px;">{{ t('common.seq') }}</th>
|
||||
<th>{{ t('common.type') }}</th>
|
||||
<th>{{ t('deposit.display_name') }}</th>
|
||||
<th>{{ t('deposit.details') }}</th>
|
||||
@@ -205,7 +206,8 @@ onMounted(fetchList);
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="row in filteredItems" :key="row.id">
|
||||
<tr v-for="(row, index) in filteredItems" :key="row.id">
|
||||
<td style="text-align: center;">{{ index + 1 }}</td>
|
||||
<td><span :class="['badge', row.methodType === 'BANK' ? 'badge-blue' : 'badge-green']">{{ row.methodType }}</span></td>
|
||||
<td>{{ row.displayName || '-' }}</td>
|
||||
<td class="details-cell">
|
||||
|
||||
Reference in New Issue
Block a user