From c62f2b6bfbb62291efffee092be3a096f908a1a5 Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 29 Oct 2023 01:50:09 +0300 Subject: [PATCH] ban view --- .../ActionDialogs/AdminInfoDialog.vue | 39 +++++++++++ .../ActionDialogs/BanViewDialog.vue | 69 +++++++++++++++++++ src/components/ActionDialogs/DiscordLink.vue | 37 ++++++++++ .../Components/ProfileContainer.vue | 15 ++-- 4 files changed, 152 insertions(+), 8 deletions(-) create mode 100644 src/components/ActionDialogs/AdminInfoDialog.vue create mode 100644 src/components/ActionDialogs/BanViewDialog.vue create mode 100644 src/components/ActionDialogs/DiscordLink.vue diff --git a/src/components/ActionDialogs/AdminInfoDialog.vue b/src/components/ActionDialogs/AdminInfoDialog.vue new file mode 100644 index 0000000..5a74377 --- /dev/null +++ b/src/components/ActionDialogs/AdminInfoDialog.vue @@ -0,0 +1,39 @@ + + + \ No newline at end of file diff --git a/src/components/ActionDialogs/BanViewDialog.vue b/src/components/ActionDialogs/BanViewDialog.vue new file mode 100644 index 0000000..db579e4 --- /dev/null +++ b/src/components/ActionDialogs/BanViewDialog.vue @@ -0,0 +1,69 @@ + + + \ No newline at end of file diff --git a/src/components/ActionDialogs/DiscordLink.vue b/src/components/ActionDialogs/DiscordLink.vue new file mode 100644 index 0000000..1d190ea --- /dev/null +++ b/src/components/ActionDialogs/DiscordLink.vue @@ -0,0 +1,37 @@ + + + \ No newline at end of file diff --git a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue index fa2dfeb..8640cc8 100644 --- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue +++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue @@ -7,12 +7,7 @@

Статус Бана:

Забанен

-

Причина бана: {{player['ban']['ban_reason']}}

-

Выдал бан: {{player['ban']['banned_by']}}

- -

Дата окончания бана: {{new Date(player['ban']['ban_utime'] * 1000 + player['ban']['ban_length'] * 60 * 1000).toLocaleString()}}

-

Бан навсегда

+

О бане...

Статус VIP :

@@ -58,9 +53,10 @@ История Банов - #{{b['id']}} | {{new Date(b['ban_utime'] * 1000).toLocaleDateString()}} | {{b['ban_length']===0?'Навсегда':`${b['ban_length']} минут`}} + #{{b['id']}} | {{new Date(b['ban_utime'] * 1000).toLocaleDateString()}} | {{b['ban_length']===0?'Навсегда':`${b['ban_length']} минут`}} +
{{altaccount.loading?'Загрузка':'Альт.аккаунты'}} @@ -98,10 +94,13 @@ import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; import axios from "axios"; import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; import Random from "@/api/Random"; +import BanViewDialog from "@/components/ActionDialogs/BanViewDialog.vue"; export default { name: "ProfileContainer", - components: {SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg}, + components: { + BanViewDialog, + SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg}, props: { player: Object, f_size: {