diff --git a/luckydiamond/src/pages/games-pages/CrashgamePage.vue b/luckydiamond/src/pages/games-pages/CrashgamePage.vue index 9a21502..7acacd4 100644 --- a/luckydiamond/src/pages/games-pages/CrashgamePage.vue +++ b/luckydiamond/src/pages/games-pages/CrashgamePage.vue @@ -80,9 +80,6 @@ -
-

{{ notificationText }}

-
@@ -111,12 +108,10 @@ export default { clickedBtn: null, ErrorClick: false, ErrorJoin: false, - notificationShow: false, balance: 0, amountDeposit: 0, crashObject: '', textError: '', - notificationText: '', startGame: false, } }, @@ -267,15 +262,7 @@ export default { return } - else if (response === 'Success') { - this.notificationText = 'Успешное добавление в очередь' - this.notificationShow = true - setTimeout(() => { - this.notificationText = '' - this.notificationShow = false - }, 1000) - } this.startGame = true }) } @@ -299,16 +286,6 @@ export default { console.log(response) this.startGame = false - if (response.startsWith('Win')) { - this.notificationText = 'Деньги успешно зачислены. Игра покинута.' - this.notificationShow = true - - setTimeout(() => { - this.notificationText = '' - this.notificationShow = false - }, 1500) - } - this.updateUserMoney() }) }