From 275691c2ab8d18c805ee4f97c643f805c3892709 Mon Sep 17 00:00:00 2001 From: gsd Date: Tue, 24 Oct 2023 23:52:01 +0300 Subject: [PATCH] ipv 2 --- src/components/Others/Loader/ProfileViewer.vue | 14 +++++++++++--- .../ProfileView/Components/ProfileContainer.vue | 4 ++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/components/Others/Loader/ProfileViewer.vue b/src/components/Others/Loader/ProfileViewer.vue index 19e8182..5e4ecba 100644 --- a/src/components/Others/Loader/ProfileViewer.vue +++ b/src/components/Others/Loader/ProfileViewer.vue @@ -34,11 +34,19 @@ export default { showProfileDialog: false }), methods: { - getPlayer(s64) { - if (this.steam64.length === 0 && s64 === undefined) return; + getPlayer() { + if (this.steam64.length === 0) return; + return this.loadProfile(this.steam64); + }, + getPlayerWithSteam(steam64){ + console.log("Get other"); + console.log(steam64); + return this.loadProfile(steam64); + }, + loadProfile(steam64){ this.showProfileDialog = true; this.loading = true; - axios.get(`/api/profile/web?steam64=${s64===undefined?this.steam64:s64}&requests=${PLAYER_REQUESTS}`).then(response => { + axios.get(`/api/profile/web?steam64=${steam64}&requests=${PLAYER_REQUESTS}`).then(response => { if (response.status === 200) this.player = response.data; else console.log("not permition"); }).catch((err) => { diff --git a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue index 3d7e81a..cb63663 100644 --- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue +++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue @@ -63,11 +63,12 @@
+ {{altaccount.loading?'Загрузка':'Альт.аккаунты'}} Альт.аккаунты - {{b}} + {{b}}
@@ -87,7 +88,6 @@
-