|
|
@ -43,7 +43,7 @@ |
|
|
|
<md-table-row slot="md-table-row" slot-scope="{ item }" md-selectable="single"> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Имя" md-sort-by="name">{{ item.name }}</md-table-cell> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Очки" md-sort-by="score">{{ item.score }}</md-table-cell> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Наиграно" md-sort-by="duration">{{ item.duration }}</md-table-cell> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Наиграно" md-sort-by="sec">{{ item.duration }}</md-table-cell> |
|
|
|
</md-table-row> |
|
|
|
</md-table> |
|
|
|
<PlayerExtendedInfo ref="pei" :player="selected_player"/> |
|
|
@ -68,12 +68,13 @@ export default { |
|
|
|
data: () => ({ |
|
|
|
showServerDialog: false, |
|
|
|
expandPlayers: false, |
|
|
|
players: [{score:0, name:"", duration:""}], |
|
|
|
players: [{score:0, name:"", duration:"", sec:0}], |
|
|
|
selected_player: null |
|
|
|
}), |
|
|
|
methods: { |
|
|
|
openFIF() { |
|
|
|
this.players = this.serverData['players']; |
|
|
|
this.players.forEach(p => p.sec = p.duration.split(':').reduce((acc,time) => (60 * acc) + +time)); |
|
|
|
this.showServerDialog = true; |
|
|
|
}, |
|
|
|
closeFIF() { |
|
|
|