vue naming changes

This commit is contained in:
faiqahzaman
2024-02-29 16:36:11 +08:00
parent b67f7f4948
commit 0a05b23cac
10 changed files with 140 additions and 100 deletions
@@ -11,7 +11,7 @@
<th width="10%">No. Anggota</th>
<th width="30%">Name</th>
<th width="20%">Partylist</th>
<th width="20%">Course</th>
<th width="20%">Unit</th>
<th width="20%">Votes</th>
</tr>
</thead>
@@ -20,14 +20,14 @@
<td>{{ getNominee(result.nominee_id)['student_id'] }}</td>
<td>{{ getNominee(result.nominee_id)['name'] }}</td>
<td>{{ getPartylist(getNominee(result.nominee_id)['partylist_id']) }}</td>
<td>{{ getNominee(result.nominee_id)['course'] }}</td>
<td>{{ getNominee(result.nominee_id)['Unit'] }}</td>
<td>{{ result.votes}}</td>
</tr>
<tr v-for="no_vote in no_votes" v-if="no_vote.position_id==position.id">
<td>{{ no_vote.student_id }}</td>
<td>{{ no_vote.name }}</td>
<td>{{ getPartylist(no_vote.partylist_id) }}</td>
<td>{{ no_vote.course }}</td>
<td>{{ no_vote.unit }}</td>
<td>0</td>
</tr>
</tbody>