Commit bb1a6ad9 authored by 毛线's avatar 毛线

save

parent f16a40f5
......@@ -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: 60px;
width: 54px;
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: 55px;
width: 48px;
font-size: 12px;
zoom: 0.9;
}
......
......@@ -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">
......
......@@ -3,9 +3,9 @@ export const state = () => ({
uiClick: '',
uiClickType: '',
mute: false, // 是否静音
volumeMachine: 100, // 机器音量
volumeBg: 100, // 背景音量
volumeButton: 100, // 按钮音量
volumeMachine: 50, // 机器音量
volumeBg: 50, // 背景音量
volumeButton: 50, // 按钮音量
videoPlay: false, // 是否曾经播放过
})
......
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