Commit 9b619682 authored by 毛线's avatar 毛线

Merge branch 'master' of 121.41.35.202:maoxian/eslotsys-game-nuxt

parents 5a690f5e b96deec9
...@@ -51,6 +51,8 @@ ...@@ -51,6 +51,8 @@
title="退出游戏" title="退出游戏"
message="机器中所有剩余的积分将自动转回您的钱包。" message="机器中所有剩余的积分将自动转回您的钱包。"
@confirm="() => quitGame()"/> @confirm="() => quitGame()"/>
<!-- 个人中心弹窗 -->
<UserDialog/>
</div> </div>
</template> </template>
...@@ -60,6 +62,7 @@ import dayjs from 'dayjs' ...@@ -60,6 +62,7 @@ import dayjs from 'dayjs'
import screenfull from 'screenfull' import screenfull from 'screenfull'
import { mapState } from 'vuex' import { mapState } from 'vuex'
import Confirm from '@/components/dialog/confirm' import Confirm from '@/components/dialog/confirm'
import UserDialog from '@/components/dialog/user-dialog/index'
export default { export default {
filters: { filters: {
filterData(time) { filterData(time) {
...@@ -71,6 +74,7 @@ export default { ...@@ -71,6 +74,7 @@ export default {
}, },
components: { components: {
Confirm, Confirm,
UserDialog,
}, },
data() { data() {
// 卡片 // 卡片
......
<template>
<div>
<div class="mark"/>
<div>
个人中心
</div>
</div>
</template>
<script>
export default {
data() {
const imagesList = [
'https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/big-sel.png',
'https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/small-nor.png',
'https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/big-nor.png',
'https://kuawai.s3.ap-east-1.amazonaws.com/resource/assets/Textures/second/Rounded%20Rectangle%2018.png', // 滑块
]
return {}
},
}
</script>
<style scoped>
.mark {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: black;
opacity: 0.3;
}
</style>
...@@ -44,5 +44,7 @@ export default { ...@@ -44,5 +44,7 @@ export default {
} }
.img { .img {
display: inline-block; display: inline-block;
max-height: 100px;
max-width: 100px;
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment