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
7194b290
Commit
7194b290
authored
Oct 13, 2023
by
毛线
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
f936aefc
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
6 deletions
+27
-6
index.vue
components/common/header/index.vue
+1
-1
index.vue
components/common/jackpot/index.vue
+1
-1
device.vue
components/dialog/device.vue
+1
-1
index.vue
components/dialog/user-dialog/index.vue
+1
-0
nuxt.config.js
nuxt.config.js
+2
-1
index.vue
pages/index.vue
+6
-1
device.vue
pages/index/device.vue
+15
-1
No files found.
components/common/header/index.vue
View file @
7194b290
...
...
@@ -44,7 +44,7 @@
<img
v-audio
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/Full%20Screen%20Button.png"
alt=
""
>
</div>
</div>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/Rectangle.png"
style=
"height: 30px; width: 100%; margin: 70px -10px;"
alt=
""
>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/Rectangle.png"
style=
"height: 30px; width: 100%; margin: 70px -10px;
pointer-events: none;
"
alt=
""
>
<Confirm
ref=
"confirm"
title=
"登出"
message=
"您要登出当前账号吗?"
@
confirm=
"() => network().quitAccount()"
/>
<Confirm
ref=
"outGame"
...
...
components/common/jackpot/index.vue
View file @
7194b290
...
...
@@ -89,7 +89,7 @@ export default {
this
.
list
=
list
setTimeout
(()
=>
{
this
.
network
().
jackpot
()
},
1
000
)
},
2
000
)
})
},
}
...
...
components/dialog/device.vue
View file @
7194b290
...
...
@@ -203,7 +203,7 @@ export default {
top
:
-4px
;
width
:
38px
;
z-index
:
10
;
z-index
:
3
;
z-index
:
100
;
}
.content
{
display
:
flex
;
...
...
components/dialog/user-dialog/index.vue
View file @
7194b290
...
...
@@ -140,6 +140,7 @@ export default {
height
:
100%
;
display
:
flex
;
flex-direction
:
column
;
position
:
relative
;
.dialog-content
{
background-color
:
#003649
;
background-image
:
linear-gradient
(
#004156
,
#00212e
);
...
...
nuxt.config.js
View file @
7194b290
...
...
@@ -14,7 +14,8 @@ export default {
title
:
process
.
env
.
project_name
||
''
,
meta
:
[
{
charset
:
'utf-8'
},
{
name
:
'viewport'
,
content
:
'width=device-width, initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no'
},
// { name: 'viewport', content: 'width=device-width, initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no' },
{
name
:
'viewport'
,
content
:
'user-scalable=no'
},
{
hid
:
'description'
,
name
:
'description'
,
content
:
process
.
env
.
project_description
||
''
}
],
link
:
[
...
...
pages/index.vue
View file @
7194b290
...
...
@@ -9,7 +9,10 @@
<!-- 右侧菜单 -->
<Menu
/>
<!-- 个人中心弹窗 -->
<UserDialog
ref=
"userDialog"
/>
<!--
<div
style=
"position: relative; z-index: 10;"
>
<UserDialog
ref=
"userDialog"
/>
</div>
-->
<UserDialog
ref=
"userDialog"
/>
<JackpotDialog
ref=
"jackpotDialog"
:data=
"jackpotData"
/>
</div>
</
template
>
...
...
@@ -265,5 +268,7 @@ export default {
.main-content
{
flex
:
1
;
overflow
:
auto
;
position
:
relative
;
z-index
:
1
;
}
</
style
>
pages/index/device.vue
View file @
7194b290
<
template
>
<div
class=
"layout"
>
<div
class=
"bg"
>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/bg_01.jpg"
alt=
""
>
</div>
<div
class=
"device-list"
style=
"height: 350px; padding-top: 30px;"
>
<div
v-for=
"(item, index) in topDeviceList"
:key=
"index"
class=
"device"
>
<Device
:data=
"item"
:header=
"headerType[index]"
/>
...
...
@@ -108,11 +111,22 @@ export default {
}
.layout
{
color
:
white
;
background-image
:
url(https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/bg_01.jpg)
;
/* background-image: url(https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/bg_01.jpg); */
background-size
:
100%
;
background-repeat
:
no-repeat
;
overflow
:
auto
;
height
:
100%
;
position
:
relative
;
z-index
:
1
;
.bg
{
position
:
fixed
;
z-index
:
-1
;
margin-top
:
-40px
;
display
:
none
;
img
{
width
:
100%
;
}
}
.device-list
{
/* float: left; */
padding
:
0
30px
;
...
...
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