Deploy testing

This commit is contained in:
Maximilian Leopold 2019-06-06 12:30:00 +02:00
parent 7380e0e5dc
commit 3d8e04bc10

View File

@ -24,18 +24,43 @@
<q-card class="q-mb-md" v-for="(user) in rankinglist" :key="user.id">
<q-item class="q-pr-sm ">
<q-item-section>
<q-item-label v-if="username === user.username" @click="gotoProfile"><a class="text-green" style="text-decoration: none"><span>{{user.rank}}. {{user.username}}</span></a></q-item-label>
<q-item-label v-if="username !== user.username"><a class="text-black" style="text-decoration: none"><span>{{user.rank}}. {{user.username}}</span></a></q-item-label>
<q-item-label v-if="username === user.username" @click="gotoProfile"><a class="text-green"
style="text-decoration: none"><span>{{user.rank}}. {{user.username}}</span></a>
</q-item-label>
<q-item-label v-if="username !== user.username"><a class="text-black"
style="text-decoration: none"><span>{{user.rank}}. {{user.username}}</span></a>
</q-item-label>
</q-item-section>
<q-item-section side>
<span class="text-grey">{{user.rankingPointsSum}} Punkte </span>
</q-item-section>
</q-item>
</q-card>
<div class="column q-gutter-lg" style="">
<div v-if="hasAdminState" class="col">
<div class="">
<div class="" style="max-width: 440px">
<q-input lazy-rules outlined filled stack-label
type="text"
label="Username eingeben"
unelevated color="negative"
></q-input>
</div>
</div>
</div>
<div v-if="hasAdminState" class="row">
<q-btn @click="resetRankingList" unelevated color="negative" label="Rangliste zurücksetzen"
<q-btn
label="Punkte des Nutzer zurücksetzen"
color="negative"
class="full-width"
/>
</div>
<div v-if="hasAdminState" class="row">
<q-btn @click="resetRankingList" unelevated color="negative" label="Gesamte Rangliste zurücksetzen"
class="full-width"/>
</div>
</div>
</q-list>
</q-tab-panel>
@ -44,7 +69,9 @@
<q-card class="q-mb-md" v-for="(team,index) in teamRankinglist" :key="team.id">
<q-item class="q-pr-sm ">
<q-item-section>
<q-item-label><a class="text-black" style="text-decoration: none"><span>{{index+1}}. {{team.teamname}}</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 side>
<span class="text-grey">{{team.rankingPointsSum}} Punkte </span>
@ -143,7 +170,6 @@
})
}).catch((error) => {
}).then()
},
calculateRank() {
// TODO
@ -156,7 +182,10 @@
// }
// lastSum = ranking.rankingPointsSum;
// }
}
},
resetPoints(username){
},
}
}
</script>