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
b34aaaea
Commit
b34aaaea
authored
Jul 20, 2023
by
毛线
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
音量优化
parent
b426ce75
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
13 deletions
+14
-13
index.vue
components/common/header/index.vue
+1
-1
index.vue
components/dialog/user-dialog/index.vue
+1
-1
info.vue
components/dialog/user-dialog/info.vue
+4
-3
score-log.vue
components/dialog/user-dialog/score-log.vue
+4
-4
tab.vue
components/dialog/user-dialog/tab.vue
+1
-1
right-player.vue
pages/index/game/components/right-player.vue
+2
-2
index.vue
pages/index/game/index.vue
+1
-1
No files found.
components/common/header/index.vue
View file @
b34aaaea
...
...
@@ -28,7 +28,7 @@
</div>
</div>
<CenterBox
class=
"center-bg"
/>
<div
class=
"profile btn"
@
click=
"click().profile()"
>
<div
v-audio
class=
"profile btn"
@
click=
"click().profile()"
>
<img
v-if=
"userInfo.avatar"
:src=
"userInfo.avatar | img"
alt=
""
class=
"profile-img"
>
<img
v-else
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/head1.png"
alt=
""
class=
"profile-img"
>
<template
v-if=
"userInfo.id"
>
...
...
components/dialog/user-dialog/index.vue
View file @
b34aaaea
...
...
@@ -2,7 +2,7 @@
<div
v-show=
"visible"
class=
"dialog-layout"
>
<div
class=
"mark"
/>
<div
class=
"dlalog"
>
<img
class=
"close btn"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/Rectangle%201175%20copy.png"
alt=
""
@
click=
"visible = false"
>
<img
v-audio
class=
"close btn"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/Rectangle%201175%20copy.png"
alt=
""
@
click=
"visible = false"
>
<div
class=
"box"
>
<Tab
@
on-change=
"(index) =>
{ tabIndex = index}"/>
<div
class=
"dialog-content"
>
...
...
components/dialog/user-dialog/info.vue
View file @
b34aaaea
...
...
@@ -2,11 +2,12 @@
<div>
<div
class=
"block-1"
>
<div
class=
"avatar-block"
>
<img
<!-- 编辑按钮 -->
<!--
<img
class=
"edit btn"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/edit_button.png"
alt=
""
@
click=
"click().edit()"
>
@
click=
"click().edit()"
>
-->
<img
v-if=
"userInfo.avatar"
:src=
"userInfo.avatar | img"
alt=
""
class=
"avatar"
>
<img
v-else
class=
"avatar"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/head2.png"
alt=
""
>
<div
class=
"name"
>
...
...
@@ -21,7 +22,7 @@
<img
style=
"width: 34px;"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/coin_03.png"
alt=
""
>
{{
userInfo
.
koiPoint
&&
userInfo
.
koiPoint
.
toFixed
(
2
)
}}
</div>
<
img
class=
"btn"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/chinese/redeem%20credit_button_zh.png"
alt=
""
>
<
!--
<img
class=
"btn"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/chinese/redeem%20credit_button_zh.png"
alt=
""
>
--
>
</div>
<div
class=
"gold-block"
>
<div
class=
"card-box"
>
...
...
components/dialog/user-dialog/score-log.vue
View file @
b34aaaea
<
template
>
<div
class=
"score-block"
>
<div
class=
"btn-block"
>
<SoreBtn
:class=
"
{active: index === 0}" class="btn" style="width: 100px; flex: none;" text="终览" @click="index = 0"/>
<SoreBtn
:class=
"
{active: index === 1}" class="btn" text="游戏交易" @click="index = 1"/>
<SoreBtn
:class=
"
{active: index === 2}" class="btn" text="代理人交易" @click="index = 2"/>
<SoreBtn
:class=
"
{active: index === 3}" class="btn" text="活动与奖励" @click="index = 3"/>
<SoreBtn
v-audio
:class=
"
{active: index === 0}" class="btn" style="width: 100px; flex: none;" text="终览" @click="index = 0"/>
<SoreBtn
v-audio
:class=
"
{active: index === 1}" class="btn" text="游戏交易" @click="index = 1"/>
<SoreBtn
v-audio
:class=
"
{active: index === 2}" class="btn" text="代理人交易" @click="index = 2"/>
<SoreBtn
v-audio
:class=
"
{active: index === 3}" class="btn" text="活动与奖励" @click="index = 3"/>
</div>
<div
class=
"header"
>
<div
class=
"date"
>
日期
</div>
...
...
components/dialog/user-dialog/tab.vue
View file @
b34aaaea
<
template
>
<div
style=
"height: 40px;"
>
<div
class=
"tab-block"
>
<div
v-for=
"(text, index) in tab"
:key=
"index"
:class=
"
{active: tabIndex === index}" class="tab-box btn" @click="tabIndex = index">
<div
v-
audio
v-
for=
"(text, index) in tab"
:key=
"index"
:class=
"
{active: tabIndex === index}" class="tab-box btn" @click="tabIndex = index">
<img
v-if=
"tabIndex === index"
class=
"tab-img"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/Rounded%20Rectangle%2019.png"
alt=
""
>
<img
v-else
class=
"tab-img"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/last_game%20%E6%8B%B7%E8%B4%9D%202.png"
alt=
""
>
<div
class=
"text"
>
{{
text
}}
</div>
...
...
pages/index/game/components/right-player.vue
View file @
b34aaaea
<
template
>
<div
class=
"box"
>
<div
v-if=
"videoTopNumber && +videoTopNumber !== 0"
:class=
"showPlayer1 ? 'show' : ''"
class=
"btn camera"
@
click=
"showPlayer1 = !showPlayer1"
>
<div
v-
audio
v-
if=
"videoTopNumber && +videoTopNumber !== 0"
:class=
"showPlayer1 ? 'show' : ''"
class=
"btn camera"
@
click=
"showPlayer1 = !showPlayer1"
>
<div
class=
"left-icon"
>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/photo-camera-interface-symbol-for-button.png"
alt=
""
>
</div>
...
...
@@ -14,7 +14,7 @@
<WebRTCPlayer
ref=
"player1"
class=
"player"
/>
</div>
</div>
<div
v-if=
"videoCamNumber && +videoCamNumber !== 0"
:class=
"showPlayer2 ? 'show' : ''"
class=
"btn camera camera2"
@
click=
"showPlayer2 = !showPlayer2"
>
<div
v-
audio
v-
if=
"videoCamNumber && +videoCamNumber !== 0"
:class=
"showPlayer2 ? 'show' : ''"
class=
"btn camera camera2"
@
click=
"showPlayer2 = !showPlayer2"
>
<div
class=
"left-icon"
>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/photo-camera-interface-symbol-for-button.png"
alt=
""
>
</div>
...
...
pages/index/game/index.vue
View file @
b34aaaea
...
...
@@ -7,7 +7,7 @@
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/pic_02.png"
alt=
""
class=
"bg"
>
<img
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/ic_object.png"
alt=
""
class=
"top-icon"
>
<img
v-if=
"isPlay"
src=
"https://kuawai.s3.ap-east-1.amazonaws.com/temp/game/video-play-state.png"
alt=
""
class=
"play-state"
>
<div
class=
"box
"
>
<div
v-audio
class=
"box btn
"
>
<WebRTCPlayer
ref=
"webrtc"
:video-src=
"player"
@
click=
"(data) => click().player(data)"
/>
</div>
</div>
...
...
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