810 lines
23 KiB
JavaScript
810 lines
23 KiB
JavaScript
let urlPrefix = getUrlPrefix()
|
||
let browser = checkVersion()
|
||
let env = EnvCheck();
|
||
if (env == 'test') {
|
||
new VConsole();
|
||
}
|
||
// 封裝layer消息提醒框
|
||
let layerIndex
|
||
var langReplace;
|
||
var localLang;
|
||
const showLoading = (content = langReplace(localLang.demoModule.layerIndex1)) => {
|
||
layer.open({
|
||
type: 2,
|
||
shadeClose: false,
|
||
content,
|
||
success(e) {
|
||
layerIndex = $(e).attr('index')
|
||
}
|
||
})
|
||
}
|
||
const hideLoading = (index) => {
|
||
layer.close(index)
|
||
}
|
||
const toastMsg = (content = langReplace(localLang.demoModule.layerIndex2), time = 2) => {
|
||
layer.open({
|
||
content,
|
||
time,
|
||
skin: 'msg'
|
||
})
|
||
}
|
||
var code = ''
|
||
var inviteCode = ''
|
||
// 初始化函數
|
||
$(function () {
|
||
getInfoFromClient();
|
||
fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言
|
||
setTimeout(function () {
|
||
// 頁面全屏
|
||
if (browser.app) {
|
||
if (browser.android) {
|
||
window.androidJsObj.initShowNav(false)
|
||
} else {
|
||
window.webkit.messageHandlers.initShowNav.postMessage(0)
|
||
}
|
||
};
|
||
fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言
|
||
langReplace = window.lang.replace;
|
||
localLang = window.lang;
|
||
translateFun();
|
||
renderGameOption();
|
||
renderLuckGiftOption();
|
||
swiperFun();
|
||
if(localLang.code ==='zh'){
|
||
$('.zh_content').show();
|
||
$('.wai_content').hide();
|
||
}else{
|
||
$('.zh_content').hide();
|
||
$('.wai_content').show();
|
||
}
|
||
var path = window.location.pathname;
|
||
code = path.split("/")[1];
|
||
inviteCode = getQueryParams().c
|
||
$('#inviteCode').text(inviteCode);
|
||
}, 100)
|
||
|
||
})
|
||
function getQueryParams() {
|
||
var queryString = window.location.search;
|
||
var params = {};
|
||
|
||
if (queryString) {
|
||
// 去掉开头的 "?",并按 "&" 分割
|
||
queryString.substring(1).split("&").forEach(function(pair) {
|
||
var [key, value] = pair.split("=");
|
||
params[decodeURIComponent(key)] = decodeURIComponent(value || ""); // 解码参数
|
||
});
|
||
}
|
||
|
||
return params;
|
||
}
|
||
// 禮物輪播
|
||
function swiperFun() {
|
||
var mySwiper = new Swiper('.swiper', {
|
||
direction: "vertical",
|
||
loop: true,
|
||
autoplay: {
|
||
delay: 3500,//
|
||
disableOnInteraction: false
|
||
}
|
||
})
|
||
}
|
||
function translateFun() {
|
||
var langReplace = window.lang.replace;
|
||
var localLang = window.lang;
|
||
$('#headerImg').attr('src', langReplace(localLang.demoModule.headerImg))
|
||
$('#gameImg').attr('src', langReplace(localLang.demoModule.gameImg))
|
||
$('#giftImg').attr('src', langReplace(localLang.demoModule.giftImg))
|
||
$('#wealthImg').attr('src', langReplace(localLang.demoModule.wealthImg))
|
||
$('#inviteImg').attr('src', langReplace(localLang.demoModule.inviteImg))
|
||
$('#gift_txt1').html(langReplace(localLang.demoModule.gift_txt1))
|
||
$('#gift_txt2').html(langReplace(localLang.demoModule.gift_txt2))
|
||
$('#gift_txt3').html(langReplace(localLang.demoModule.gift_txt3))
|
||
$('#gift_txt4').html(langReplace(localLang.demoModule.gift_txt4))
|
||
$('#gift_txt5').html(langReplace(localLang.demoModule.gift_txt5))
|
||
$('#gift_txt6').html(langReplace(localLang.demoModule.gift_txt6))
|
||
$('#txt7').html(langReplace(localLang.demoModule.txt7))
|
||
$('#txt8').html(langReplace(localLang.demoModule.txt8))
|
||
$('#txt9').html(langReplace(localLang.demoModule.txt9))
|
||
$('#txt10').html(langReplace(localLang.demoModule.txt10))
|
||
$('#txt11').html(langReplace(localLang.demoModule.txt11))
|
||
$('#invition_txt').html(langReplace(localLang.demoModule.invition_txt))
|
||
$('#txt12').html(langReplace(localLang.demoModule.txt12))
|
||
|
||
$('#txt13').html(langReplace(localLang.demoModule.txt13))
|
||
|
||
$('#txt14').html(langReplace(localLang.demoModule.txt14))
|
||
|
||
}
|
||
// 截取字符串首字母的方法
|
||
function getFirstLetter(str) {
|
||
if (!str || typeof str !== 'string') {
|
||
return ''; // 如果输入不是字符串或为空,返回空字符串
|
||
}
|
||
return str.charAt(0); // 返回字符串的第一个字符
|
||
}
|
||
function renderGameOption() {
|
||
var currentIndex = 0;
|
||
var contentHtml = '';
|
||
function createGiftItem(item) {
|
||
const firstLetter = getFirstLetter(item.nick); // 获取首字母
|
||
return `
|
||
<div class="swiper-slide">
|
||
<div class="game_content">
|
||
<div class="flex_box">
|
||
<div class="info">
|
||
<img
|
||
src="${item.avatar}"
|
||
alt=""
|
||
/>
|
||
<div class="name">${firstLetter}****</div>
|
||
</div>
|
||
<div class="right">
|
||
<img src="./images/win.png" alt="" class="win" />
|
||
<img
|
||
src="${item.gameLink}"
|
||
alt=""
|
||
class="game_link"
|
||
/>
|
||
<div class="coins">${item.win}</div>
|
||
<div class="coins_img">
|
||
<img
|
||
src="./images/jinbi.png"
|
||
alt=""
|
||
/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="tip">${langReplace(localLang.demoModule.Send)} ${item.pay} ${langReplace(localLang.demoModule.Won)} ${item.rate} ${langReplace(localLang.demoModule.Times)}</div>
|
||
</div>
|
||
</div>
|
||
`;
|
||
}
|
||
const giftItems = gameOption.map(item => createGiftItem(item));
|
||
|
||
$(' #gameSwiper .swiper-wrapper').html(giftItems.join(''));
|
||
}
|
||
|
||
function renderLuckGiftOption() {
|
||
var currentIndex = 0;
|
||
var contentHtml = '';
|
||
function createGiftItem(item) {
|
||
return `
|
||
<div class="swiper-slide">
|
||
<div class="gift_content">
|
||
<img src="./images/giftchang.png" alt="" class="gift_chang" />
|
||
<div class="flex_box">
|
||
<div class="left">
|
||
<img
|
||
src="${item.avatar}"
|
||
alt=""
|
||
/>
|
||
</div>
|
||
<div class="right">
|
||
<div class="txt">${langReplace(localLang.demoModule.Send)} <span style="color: #FDF565;"> ${langReplace(localLang.demoModule[item.gift_name])}</span></div>
|
||
<div class="txt2">${langReplace(localLang.demoModule.Won)} <span style="color: #FDF565;">${item.rate}</span> ${langReplace(localLang.demoModule.Times)}</div>
|
||
</div>
|
||
</div>
|
||
<div class="yuan_box">
|
||
<img src="./images/giftyuan.png" alt="" class="gift_yuan" />
|
||
<div class="yuan_txt">
|
||
<div class="yuan_num">${item.win}</div>
|
||
<div class="yuan_coins">${langReplace(localLang.demoModule.Coins)}</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
`;
|
||
}
|
||
const giftItems = luckGiftOption.map(item => createGiftItem(item));
|
||
$(' #giftSwiper .swiper-wrapper').html(giftItems.join(''));
|
||
}
|
||
$("#copyBtn").click(function () {
|
||
var text = $("#inviteCode").text();
|
||
if (navigator.clipboard) {
|
||
// 使用 navigator.clipboard API
|
||
navigator.clipboard.writeText(text)
|
||
.then(function () {
|
||
toastMsg('复制成功')
|
||
})
|
||
.catch(function (error) {
|
||
});
|
||
} else {
|
||
// 使用 document.execCommand("copy") 作为备用方案
|
||
var $temp = $("<textarea>");
|
||
$("body").append($temp);
|
||
$temp.val(text).select();
|
||
document.execCommand("copy");
|
||
$temp.remove();
|
||
toastMsg('复制成功')
|
||
}
|
||
})
|
||
$(".open").click(function (event) {
|
||
event.preventDefault(); // 阻止默认行为
|
||
|
||
var deepLinkUrl = `EParty://app?code=${code}`; // 你的 Deep Link URL
|
||
console.log(deepLinkUrl,'------')
|
||
window.location.href = deepLinkUrl;
|
||
// 设置超时检测
|
||
setTimeout(function() {
|
||
window.location.href = 'https://epartylive.com/'
|
||
}, 2000); // 超时时间 500ms
|
||
})
|
||
|
||
var gameOption = [
|
||
{
|
||
"nick": "小羊大甜妹.",
|
||
"avatar": "https://cdn.epartylive.com/image/2f871546aff0ecd641eaa8509728a8b9.jpeg",
|
||
"game_id": "107",
|
||
"gameLink": "https://cdn.epartylive.com/DragonandTiger.png",
|
||
"pay": 633750.0,
|
||
"win": 470500.0,
|
||
"rate": 0.7400000095367432
|
||
},
|
||
{
|
||
"nick": "༄𝓐𝓛 臻愛♑",
|
||
"avatar": "https://cdn.epartylive.com/9baf2158-acda-4d08-807a-2e32010e3174.jpeg",
|
||
"game_id": "107",
|
||
"gameLink": "https://cdn.epartylive.com/DragonandTiger.png",
|
||
"pay": 43000.0,
|
||
"win": 62000.0,
|
||
"rate": 1.440000057220459
|
||
},
|
||
{
|
||
"nick": "🧭 . 𝓩の迪迪🖕",
|
||
"avatar": "https://cdn.epartylive.com/image/8ec5eb1df9aad8d7e6abee24d0ae41ac.jpeg",
|
||
"game_id": "109",
|
||
"gameLink": "https://cdn.epartylive.com/MultiplayerFishinggame.png",
|
||
"pay": 22050.0,
|
||
"win": 24350.0,
|
||
"rate": 1.100000023841858
|
||
},
|
||
{
|
||
"nick": "",
|
||
"avatar": "https://cdn.epartylive.com/image/149ba884510f20891c214bf3eb248a1b.jpeg",
|
||
"game_id": "107",
|
||
"gameLink": "https://cdn.epartylive.com/DragonandTiger.png",
|
||
"pay": 35800.0,
|
||
"win": 28800.0,
|
||
"rate": 0.800000011920929
|
||
},
|
||
{
|
||
"nick": "",
|
||
"avatar": "https://cdn.epartylive.com/image/149ba884510f20891c214bf3eb248a1b.jpeg",
|
||
"game_id": "109",
|
||
"gameLink": "https://cdn.epartylive.com/MultiplayerFishinggame.png",
|
||
"pay": 7000.0,
|
||
"win": 5800.0,
|
||
"rate": 0.8299999833106995
|
||
},
|
||
{
|
||
"nick": "قمرᴮ🅢",
|
||
"avatar": "https://cdn.epartylive.com/53527ef3-490a-456e-802d-56e0c378b67a.jpeg",
|
||
"game_id": "103",
|
||
"gameLink": "https://cdn.epartylive.com/fruitparty.png",
|
||
"pay": 2277200.0,
|
||
"win": 2387000.0,
|
||
"rate": 1.0499999523162842
|
||
},
|
||
{
|
||
"nick": "Super Admin Mok",
|
||
"avatar": "https://cdn.epartylive.com/fc10f129-a558-48c4-8482-490ac7ec398b.jpeg",
|
||
"game_id": "104",
|
||
"gameLink": "https://cdn.epartylive.com/BeerWheel.png",
|
||
"pay": 45500.0,
|
||
"win": 84000.0,
|
||
"rate": 1.850000023841858
|
||
},
|
||
{
|
||
"nick": "Super Admin Mok",
|
||
"avatar": "https://cdn.epartylive.com/fc10f129-a558-48c4-8482-490ac7ec398b.jpeg",
|
||
"game_id": "109",
|
||
"gameLink": "https://cdn.epartylive.com/MultiplayerFishinggame.png",
|
||
"pay": 265150.0,
|
||
"win": 268200.0,
|
||
"rate": 1.0099999904632569
|
||
},
|
||
{
|
||
"nick": "ꜱͥᴜᴘͣᴇͫʀ ᴀᴅᴍɪɴ",
|
||
"avatar": "https://cdn.epartylive.com/97c535ba-bec5-4845-803c-c2b949ea066d.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 85800.0,
|
||
"win": 70800.0,
|
||
"rate": 0.8299999833106995
|
||
},
|
||
{
|
||
"nick": "🇵🇭💦Dj-28🇹🇨",
|
||
"avatar": "https://cdn.epartylive.com/54bbdad4-b5ba-4685-b280-49728490bb64.jpg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 258500.0,
|
||
"win": 236000.0,
|
||
"rate": 0.9100000262260437
|
||
},
|
||
{
|
||
"nick": "🇵🇭💦Dj-28🇹🇨",
|
||
"avatar": "https://cdn.epartylive.com/54bbdad4-b5ba-4685-b280-49728490bb64.jpg",
|
||
"game_id": "103",
|
||
"gameLink": "https://cdn.epartylive.com/fruitparty.png",
|
||
"pay": 10000.0,
|
||
"win": 5000.0,
|
||
"rate": 0.5
|
||
},
|
||
{
|
||
"nick": "🇵🇭💦Dj-28🇹🇨",
|
||
"avatar": "https://cdn.epartylive.com/54bbdad4-b5ba-4685-b280-49728490bb64.jpg",
|
||
"game_id": "107",
|
||
"gameLink": "https://cdn.epartylive.com/DragonandTiger.png",
|
||
"pay": 2706200.0,
|
||
"win": 2814400.0,
|
||
"rate": 1.0399999618530274
|
||
},
|
||
{
|
||
"nick": "**α∂ιк∂σтєяz**",
|
||
"avatar": "https://cdn.epartylive.com/fa9b0fe9-a071-4971-8b44-b0b267df19f2.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 249000.0,
|
||
"win": 257000.0,
|
||
"rate": 1.0299999713897706
|
||
},
|
||
{
|
||
"nick": "**α∂ιк∂σтєяz**",
|
||
"avatar": "https://cdn.epartylive.com/fa9b0fe9-a071-4971-8b44-b0b267df19f2.jpeg",
|
||
"game_id": "110",
|
||
"gameLink": "https://cdn.epartylive.com/aolinpisizhimenkaobei.png",
|
||
"pay": 150000.0,
|
||
"win": 102200.0,
|
||
"rate": 0.6800000071525574
|
||
},
|
||
{
|
||
"nick": "**α∂ιк∂σтєяz**",
|
||
"avatar": "https://cdn.epartylive.com/fa9b0fe9-a071-4971-8b44-b0b267df19f2.jpeg",
|
||
"game_id": "111",
|
||
"gameLink": "https://cdn.epartylive.com/shuiguojikaobei.png",
|
||
"pay": 5335200.0,
|
||
"win": 5330460.0,
|
||
"rate": 1.0
|
||
},
|
||
{
|
||
"nick": "yeng2x",
|
||
"avatar": "https://cdn.epartylive.com/e77d1141-711a-45ad-8d13-3f5e6ffa3220.jpeg",
|
||
"game_id": "111",
|
||
"gameLink": "https://cdn.epartylive.com/shuiguojikaobei.png",
|
||
"pay": 270600.0,
|
||
"win": 256900.0,
|
||
"rate": 0.949999988079071
|
||
},
|
||
{
|
||
"nick": "🇵🇭💦ℹ️*2️⃣8️⃣",
|
||
"avatar": "https://cdn.epartylive.com/1b93da9d-2db2-405e-8035-38195f00d931.jpeg",
|
||
"game_id": "107",
|
||
"gameLink": "https://cdn.epartylive.com/DragonandTiger.png",
|
||
"pay": 166700.0,
|
||
"win": 139400.0,
|
||
"rate": 0.8399999737739563
|
||
},
|
||
{
|
||
"nick": "🧚♂️Bryan👫🧚♂",
|
||
"avatar": "https://cdn.epartylive.com/41e68d25-a996-4336-a319-d653c696365b.jpg",
|
||
"game_id": "103",
|
||
"gameLink": "https://cdn.epartylive.com/fruitparty.png",
|
||
"pay": 258000.0,
|
||
"win": 75000.0,
|
||
"rate": 0.28999999165534975
|
||
},
|
||
{
|
||
"nick": "familia savage",
|
||
"avatar": "https://cdn.epartylive.com/786a7faa-b63a-4c23-827a-af41eeedfac1.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 557100.0,
|
||
"win": 589600.0,
|
||
"rate": 1.059999942779541
|
||
},
|
||
{
|
||
"nick": "ˢ͜ᵛ Labz💗",
|
||
"avatar": "https://cdn.epartylive.com/d3a4d496-cfdc-435a-b8fd-2c9faed5c389.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 123700.0,
|
||
"win": 165000.0,
|
||
"rate": 1.3300000429153443
|
||
},
|
||
{
|
||
"nick": "ˢ͜ᵛ Labz💗",
|
||
"avatar": "https://cdn.epartylive.com/d3a4d496-cfdc-435a-b8fd-2c9faed5c389.jpeg",
|
||
"game_id": "110",
|
||
"gameLink": "https://cdn.epartylive.com/aolinpisizhimenkaobei.png",
|
||
"pay": 1500.0,
|
||
"win": 1265.0,
|
||
"rate": 0.8399999737739563
|
||
},
|
||
{
|
||
"nick": "سومه",
|
||
"avatar": "https://cdn.epartylive.com/9cc31caa-3ea6-4442-9553-8a69f31ab4c2.jpg",
|
||
"game_id": "109",
|
||
"gameLink": "https://cdn.epartylive.com/MultiplayerFishinggame.png",
|
||
"pay": 69250.0,
|
||
"win": 63000.0,
|
||
"rate": 0.9100000262260437
|
||
},
|
||
{
|
||
"nick": "아멘",
|
||
"avatar": "https://cdn.epartylive.com/93b40e48-d8ce-44f2-b34b-7c5e048fd3f6.jpg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 4300.0,
|
||
"win": 3100.0,
|
||
"rate": 0.7200000286102295
|
||
},
|
||
{
|
||
"nick": "Popcorn",
|
||
"avatar": "https://cdn.epartylive.com/23d3b9e9-8b1f-4a64-8239-d3a05df83663.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 260000.0,
|
||
"win": 106000.0,
|
||
"rate": 0.4099999964237213
|
||
},
|
||
{
|
||
"nick": "🅷ᴀꜱᴀɴ༎ࠫ˿̽",
|
||
"avatar": "https://cdn.epartylive.com/1c1df418-346e-43a2-a99a-fe20fdf551a7.jpeg",
|
||
"game_id": "103",
|
||
"gameLink": "https://cdn.epartylive.com/fruitparty.png",
|
||
"pay": 39700.0,
|
||
"win": 33000.0,
|
||
"rate": 0.8299999833106995
|
||
},
|
||
{
|
||
"nick": "🅷ᴀꜱᴀɴ༎ࠫ˿̽",
|
||
"avatar": "https://cdn.epartylive.com/1c1df418-346e-43a2-a99a-fe20fdf551a7.jpeg",
|
||
"game_id": "111",
|
||
"gameLink": "https://cdn.epartylive.com/shuiguojikaobei.png",
|
||
"pay": 600.0,
|
||
"win": 1320.0,
|
||
"rate": 2.200000047683716
|
||
},
|
||
{
|
||
"nick": "🌸Rkboss",
|
||
"avatar": "https://cdn.epartylive.com/87672746-fc41-4f33-a2e3-37ee9a930251.jpeg",
|
||
"game_id": "102",
|
||
"gameLink": "https://cdn.epartylive.com/speepyturntable2.png",
|
||
"pay": 247400.0,
|
||
"win": 309400.0,
|
||
"rate": 1.25
|
||
},
|
||
{
|
||
"nick": "🌸Rkboss",
|
||
"avatar": "https://cdn.epartylive.com/87672746-fc41-4f33-a2e3-37ee9a930251.jpeg",
|
||
"game_id": "103",
|
||
"gameLink": "https://cdn.epartylive.com/fruitparty.png",
|
||
"pay": 128000.0,
|
||
"win": 8000.0,
|
||
"rate": 0.05999999865889549
|
||
},
|
||
{
|
||
"nick": "🌸Rkboss",
|
||
"avatar": "https://cdn.epartylive.com/87672746-fc41-4f33-a2e3-37ee9a930251.jpeg",
|
||
"game_id": "110",
|
||
"gameLink": "https://cdn.epartylive.com/aolinpisizhimenkaobei.png",
|
||
"pay": 10000.0,
|
||
"win": 11925.0,
|
||
"rate": 1.190000057220459
|
||
},
|
||
{
|
||
"nick": "🌸Rkboss",
|
||
"avatar": "https://cdn.epartylive.com/87672746-fc41-4f33-a2e3-37ee9a930251.jpeg",
|
||
"game_id": "111",
|
||
"gameLink": "https://cdn.epartylive.com/shuiguojikaobei.png",
|
||
"pay": 7800.0,
|
||
"win": 6900.0,
|
||
"rate": 0.8799999952316284
|
||
}
|
||
]
|
||
var luckGiftOption = [
|
||
{
|
||
"id": 863603,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "500059 I",
|
||
"pay": 131400,
|
||
"win": 1314000,
|
||
"rate": 10
|
||
},
|
||
{
|
||
"id": 1478193,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 1000000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1642027,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運包",
|
||
"pay": 500,
|
||
"win": 500000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 348493,
|
||
"nick": "👑D'SHA-SHA🌺",
|
||
"erban_no": 311114,
|
||
"avatar": "https://cdn.epartylive.com/8d35118a-22d0-4c78-aa41-fea98a903e9c.jpeg",
|
||
"gift_name": "金钥",
|
||
"pay": 376,
|
||
"win": 376000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 1477321,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 34000,
|
||
"win": 340000,
|
||
"rate": 10
|
||
},
|
||
{
|
||
"id": 2008089,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 698136,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 1640354,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 1908109,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 1654132,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 715755,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 300,
|
||
"win": 300000,
|
||
"rate": 1000
|
||
},
|
||
{
|
||
"id": 969632,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "500059 I",
|
||
"pay": 52000,
|
||
"win": 260000,
|
||
"rate": 5
|
||
},
|
||
{
|
||
"id": 1620697,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運包",
|
||
"pay": 500,
|
||
"win": 250000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1625924,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運包",
|
||
"pay": 500,
|
||
"win": 250000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1669940,
|
||
"nick": "احمد 77",
|
||
"erban_no": 4041019,
|
||
"avatar": "https://cdn.epartylive.com/ee732806-a34e-4bd5-aac1-79abd1db5ad0.jpg",
|
||
"gift_name": "幸運包",
|
||
"pay": 500,
|
||
"win": 250000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1862408,
|
||
"nick": "✯͜͡☚ملك الإحساس",
|
||
"erban_no": 117000,
|
||
"avatar": "https://cdn.epartylive.com/b4f5a2b2-0674-4f44-8c27-079de7473bbc.jpeg",
|
||
"gift_name": "幸運戒",
|
||
"pay": 2100,
|
||
"win": 210000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1475378,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1467535,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1478055,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1472085,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1475443,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1468795,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1470498,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1468178,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1477844,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1470538,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 1467538,
|
||
"nick": "رٖيےـاضے",
|
||
"erban_no": 500059,
|
||
"avatar": "https://cdn.epartylive.com/b0cb0f37-7eec-4013-9cd7-f041d97d47a2.jpg",
|
||
"gift_name": "幸運手錶",
|
||
"pay": 2000,
|
||
"win": 200000,
|
||
"rate": 100
|
||
},
|
||
{
|
||
"id": 2052835,
|
||
"nick": "👑KIKAY QUEEN",
|
||
"erban_no": 1143333,
|
||
"avatar": "https://cdn.epartylive.com/420bbd61-1a23-443e-9d3d-d806499d65fd.jpeg",
|
||
"gift_name": "金钥",
|
||
"pay": 376,
|
||
"win": 188000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1493012,
|
||
"nick": "✯͜͡ڪـᬼريم",
|
||
"erban_no": 5860974,
|
||
"avatar": "https://cdn.epartylive.com/2ab83c64-c561-448c-9c82-690f5eb838b1.jpeg",
|
||
"gift_name": "幸運爪",
|
||
"pay": 350,
|
||
"win": 175000,
|
||
"rate": 500
|
||
},
|
||
{
|
||
"id": 1876262,
|
||
"nick": "👋آإلـ⚚ﺰ؏يــ⇣ﻢ⇣",
|
||
"erban_no": 1112,
|
||
"avatar": "https://cdn.epartylive.com/74c172f5-a165-437c-be9a-21fbfea69b18.jpeg",
|
||
"gift_name": "幸運馬卡龍",
|
||
"pay": 1700,
|
||
"win": 170000,
|
||
"rate": 100
|
||
}
|
||
]
|
||
|
||
|