Applied final changes to team rankinglist view

This commit is contained in:
Katharina Will 2019-05-08 20:39:36 +02:00
parent ebdea962ae
commit 20bf3bfd51
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,6 @@
validating: false, validating: false,
loading: false, loading: false,
paused: false, paused: false,
result: null,
params: null, params: null,
noStreamApiSupport: false, noStreamApiSupport: false,
lon: "", lon: "",
@ -90,7 +89,8 @@
params.token = JSON.parse(localStorage.getItem('userToken')).token; params.token = JSON.parse(localStorage.getItem('userToken')).token;
} }
return params; return params;
} },
updateResult(event) { updateResult(event) {
console.log("updateResult()"); console.log("updateResult()");
console.log(event); console.log(event);

View File

@ -39,10 +39,10 @@
<q-card class="q-mb-md" v-for="(team,index) in teamRankinglist" :key="team.id"> <q-card class="q-mb-md" v-for="(team,index) in teamRankinglist" :key="team.id">
<q-item class="q-pr-sm "> <q-item class="q-pr-sm ">
<q-item-section> <q-item-section>
<q-item-label><a class="text-black" style="text-decoration: none"><span>{{index+1}}. {{team.name}}</span></a></q-item-label> <q-item-label><a class="text-black" style="text-decoration: none"><span>{{index+1}}. {{team.teamname}}</span></a></q-item-label>
</q-item-section> </q-item-section>
<q-item-section side> <q-item-section side>
<span class="text-grey">{{team.ranking_points}} Punkte </span> <span class="text-grey">{{team.rankingPointsSum}} Punkte </span>
</q-item-section> </q-item-section>
</q-item> </q-item>
</q-card> </q-card>