房间日流水 - 初始化

This commit is contained in:
2025-09-16 16:39:18 +08:00
parent 41264a3d01
commit 5d3ba01f25
44 changed files with 2055 additions and 0 deletions

View File

@@ -244,4 +244,18 @@ $('.largestBox').on('click', 'ul li .tx', function () {
window.androidJsObj.openPersonPage(uid);
}
}
})
// 跳转房间日流水
$('.rewards_in').click(function () {
let link = `${urlPrefix}/eparty/modules/room_rank/roomDayReward.html`
if(browser.app){
if(browser.android){
// window.androidJsObj.openChargePage()
tools.nativeUtils.jumpAppointPage('H5_PAGE',link)
}else if(browser.ios){
window.webkit.messageHandlers.openChargePage.postMessage(null)
}
}else{
toastMsg('请在app内打开')
}
})