Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
eslotsys-game-nuxt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
毛线
eslotsys-game-nuxt
Commits
bb1a6ad9
Commit
bb1a6ad9
authored
Oct 12, 2023
by
毛线
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
f16a40f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
index.vue
components/common/jackpot/index.vue
+6
-6
jackpot.vue
components/dialog/jackpot.vue
+3
-3
audio.js
store/audio.js
+3
-3
No files found.
components/common/jackpot/index.vue
View file @
bb1a6ad9
...
...
@@ -12,7 +12,7 @@
<div><img
class=
"img"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/chinese/rangeChinese.png"
alt=
""
></div>
</div>
<div
class=
"value-box"
>
<div
class=
"value"
>
{{
jackpot
[
0
].
currentAmount
}}
</div>
<div
class=
"value"
>
{{
jackpot
[
0
].
currentAmount
|
filterToFen
}}
</div>
<div
class=
"size"
>
{{
jackpot
[
0
].
minAmount
|
filterToMoney
}}
~
{{
jackpot
[
0
].
maxAmount
|
filterToMoney
}}
</div>
</div>
</div>
...
...
@@ -27,7 +27,7 @@
<div><img
class=
"img"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/chinese/range2Chinese.png"
alt=
""
></div>
</div>
<div
class=
"value-box"
>
<div
class=
"value"
>
{{
jackpot
[
1
].
currentAmount
}}
</div>
<div
class=
"value"
>
{{
jackpot
[
1
].
currentAmount
|
filterToFen
}}
</div>
<div
class=
"size"
>
{{
jackpot
[
1
].
minAmount
|
filterToMoney
}}
~
{{
jackpot
[
1
].
maxAmount
|
filterToMoney
}}
</div>
</div>
</div>
...
...
@@ -42,7 +42,7 @@
<div
class=
"name"
>
{{
item
.
levelName
}}
</div>
</div>
<div
class=
"value-box"
>
<div
class=
"value"
>
{{
item
.
currentAmount
}}
</div>
<div
class=
"value"
>
{{
item
.
currentAmount
|
filterToFen
}}
</div>
<div
class=
"size"
>
{{
item
.
minAmount
|
filterToMoney
}}
~
{{
item
.
maxAmount
|
filterToMoney
}}
</div>
</div>
</div>
...
...
@@ -179,7 +179,7 @@ export default {
height
:
50px
;
box-sizing
:
border-box
;
.label-box
{
width
:
60
px
;
width
:
54
px
;
font-size
:
10px
;
display
:
flex
;
flex-direction
:
column
;
...
...
@@ -240,7 +240,7 @@ export default {
display
:
flex
;
font-size
:
12px
;
color
:
white
;
padding
:
4px
10px
;
padding
:
4px
10px
4px
6px
;
height
:
32px
;
.fire
{
position
:
absolute
;
...
...
@@ -250,7 +250,7 @@ export default {
}
.label-box
{
margin-right
:
10px
;
width
:
55
px
;
width
:
48
px
;
font-size
:
12px
;
zoom
:
0
.9
;
}
...
...
components/dialog/jackpot.vue
View file @
bb1a6ad9
...
...
@@ -13,17 +13,17 @@
<div
class=
"info"
><strong>
Amount
</strong>
:
<img
v-if=
"data.creditType === 1"
class=
"red-coin"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/temp/header/gold-coin.png"
alt=
""
>
<img
v-if=
"data.creditType === 2"
class=
"red-coin"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/temp/header/red-coin.png"
alt=
""
>
{{
data
.
amount
}}
{{
data
.
amount
|
filterToFen
}}
</div>
<div
style=
"margin-top: 30px;"
>
<template
v-if=
"selfWin"
>
<div
class=
"p"
>
$
{{
data
.
amount
}}
credits has been added to your account.
$
{{
data
.
amount
|
filterToFen
}}
credits has been added to your account.
</div>
</
template
>
<
template
v-else
>
<div
class=
"p"
>
Another
{{
data
.
levelName
}}
Jackpot has just been WON! Congratulations to Player
{{
data
.
nickName
}}
for winning $
{{
data
.
amount
}}
credits!!
Another
{{
data
.
levelName
}}
Jackpot has just been WON! Congratulations to Player
{{
data
.
nickName
}}
for winning $
{{
data
.
amount
|
filterToFen
}}
credits!!
</div>
</
template
>
<div
class=
"p"
>
...
...
store/audio.js
View file @
bb1a6ad9
...
...
@@ -3,9 +3,9 @@ export const state = () => ({
uiClick
:
''
,
uiClickType
:
''
,
mute
:
false
,
// 是否静音
volumeMachine
:
10
0
,
// 机器音量
volumeBg
:
10
0
,
// 背景音量
volumeButton
:
10
0
,
// 按钮音量
volumeMachine
:
5
0
,
// 机器音量
volumeBg
:
5
0
,
// 背景音量
volumeButton
:
5
0
,
// 按钮音量
videoPlay
:
false
,
// 是否曾经播放过
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment