Applied final changes to team rankinglist view
This commit is contained in:
parent
ebdea962ae
commit
20bf3bfd51
@ -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);
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user