Compare commits

...

18 Commits

Author SHA1 Message Date
Dragon
7c9c75b9ae 新增代充跳转页 2023-08-09 18:53:40 +08:00
Dragon
c62c02655a 新增金币账单 2023-08-09 11:06:43 +08:00
Dragon
b522baca60 更新账单 2023-08-09 11:00:48 +08:00
Dragon
e72bcc1ce1 新增金币提现驳回账单 2023-08-09 11:00:47 +08:00
Dragon
bb2784dae7 修改logo和下载链接 2023-08-09 10:57:48 +08:00
Dragon
6983b611f6 替换遗漏pike 2023-08-08 16:02:54 +08:00
Dragon
96fc251f09 更新塔罗规则 2023-08-07 16:04:50 +08:00
Dragon
bb2c2b44cb 隐藏提现驳回账单 2023-08-07 16:04:47 +08:00
Dragon
ef6bcac4e9 修复账单无法登入过期问题 2023-08-07 16:04:42 +08:00
Dragon
52925e948b 更新办单和账单 2023-08-07 16:04:38 +08:00
Dragon
43736ecd86 回复commitpiko关键字 2023-08-07 16:04:30 +08:00
Dragon
63c10b4e2a 修改下载链接 2023-08-07 16:04:28 +08:00
Dragon
4a87f8e70f 完成迭代1.10.0 2023-08-07 16:04:25 +08:00
Dragon
d06a9136cc 修复提现其他无法保存问题 2023-08-07 15:05:28 +08:00
Dragon
3e9a323e77 修复寻爱免责声明 2023-08-04 14:33:06 +08:00
Dragon
192846f665 活动新增免责声明 2023-08-04 14:10:07 +08:00
Dragon
04ec4e1213 写死注销传参 2023-08-03 14:47:59 +08:00
Dragon
d4edc4d7f9 更新注销逻辑 2023-08-02 14:51:36 +08:00
198 changed files with 1268 additions and 1034 deletions

View File

@@ -241,7 +241,7 @@
</ul>
<img src="./images/btn_sure.png" class="sure" alt="">
<div class="tips">奖励将自动发放到装扮中心,快去展示自己吧~</div>
<!-- <div class="tips">*情人节限定5位靓号:52XXXXXX为随机数字一组为2个靓号<br>联系客服领取LINE: pekoyuyin)</div> -->
<!-- <div class="tips">*情人节限定5位靓号:52XXXXXX为随机数字一组为2个靓号<br>联系客服领取LINE: pikoyuyin)</div> -->
</div>
</div>
<!-- 我的cp弹窗 -->

View File

@@ -370,7 +370,7 @@ function buy(id, num, type) {
$('.petition-wrap .myticket span e').html(res.data.remain)
$('.gx .gx_in .box li img').attr('src', res.data.prop.icon)
$('.gx .gx_in .box li span').html( res.data.prop.name)
$('.gx .gx_in .tips').html(`*情人節限定5位靚號:52XXXXXX為隨機數字一組為2個靚號<br>聯系客服領取LINE: pekoyuyin)`)
$('.gx .gx_in .tips').html(`*情人節限定5位靚號:52XXXXXX為隨機數字一組為2個靚號<br>聯系客服領取LINE: pikoyuyin)`)
$('.gx').show()
} else {

View File

@@ -76,7 +76,7 @@
<div class="tab2_contain">
<div class="rule_wrap">
<p class="rule_item">
活动期间每日登录pekoApp即可免费获赠一个魔法棒每台设备每日限一次
活动期间每日登录pikoApp即可免费获赠一个魔法棒每台设备每日限一次
</p>
</div>
<div class="panel_wrap">

View File

@@ -756,7 +756,7 @@ function getRank (rankType, currentTime, comeFrom) {
$('.page3 .myList img').attr('src', res.data.userRank.avatar);
$('.page3 .myList .num').text(res.data.userRank.rank == 0 ? '未上榜' : res.data.userRank.rank);
$('.page3 .myList .nick').text(res.data.userRank.nick.length > 8 ? res.data.userRank.nick.slice(0, 8) + '...' : res.data.userRank.nick);
$('.page3 .myList .score').text(comeFrom == 1 ? 'peko值:' + unitProcessing(res.data.userRank.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.data.userRank.rankValue, 10000, 1, 'w'));
$('.page3 .myList .score').text(comeFrom == 1 ? 'piko值:' + unitProcessing(res.data.userRank.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.data.userRank.rankValue, 10000, 1, 'w'));
hideLoading(layerIndex)
// 处理前三
if (top3.length < 3) {
@@ -770,7 +770,7 @@ function getRank (rankType, currentTime, comeFrom) {
top3.forEach((res, index) => {
$(`.page3 .list .top${index + 1} .txBg`).attr('src', res.avatar);
$(`.page3 .list .top${index + 1} .nick`).text(res.nick.length > 6 ? res.nick.slice(0, 6) + '...' : res.nick);
$(`.page3 .list .top${index + 1} p`).text(comeFrom == 1 ? 'peko值:' + unitProcessing(res.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.rankValue, 10000, 1, 'w'));
$(`.page3 .list .top${index + 1} p`).text(comeFrom == 1 ? 'piko值:' + unitProcessing(res.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.rankValue, 10000, 1, 'w'));
})
// 非前三
var str = '';
@@ -780,7 +780,7 @@ function getRank (rankType, currentTime, comeFrom) {
<div class="num">NO.${index + 4}</div>
<img src="${res.avatar}" alt="">
<div class="nick">${res.nick.length > 6 ? res.nick.slice(0, 6) + '...' : res.nick}</div>
<div class="score">${comeFrom == 1 ? 'peko值:' + unitProcessing(res.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.rankValue, 10000, 1, 'w')}</div>
<div class="score">${comeFrom == 1 ? 'piko值:' + unitProcessing(res.rankValue, 10000, 1, 'w') : '魅力值:' + unitProcessing(res.rankValue, 10000, 1, 'w')}</div>
</li>`
})
$('.page3 .list .notTop').append(str);

View File

@@ -45,7 +45,7 @@
<p>剩余7天</p>
<div class="nameplate">
<img src="http://image.uat.zhongjialx.com/FqVz-oYR2lzqfzIlZNM3BrA016cX?imageslim" alt="">
<span>peko看看</span>
<span>piko看看</span>
</div>
<div class="delay-btn">
<img src="./images/delay-btn.png" alt="">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -269,7 +269,7 @@
<div class="qtsm">
<p class="title">其他說明</p>
如果以上說明未能解答您的疑問,請聯繫客服,會有專人解答疑難
<p>本活動蘋果公司無關</p>
<p>本活動以及活動獎勵與Google/蘋果公司無關</p>
</div>
</main>
</div>

View File

@@ -76,7 +76,7 @@
<div class="tab2_contain">
<div class="rule_wrap">
<p class="rule_item">
活动期间每日登录pekoApp即可免费获赠一个魔法棒每台设备每日限一次
活动期间每日登录pikoApp即可免费获赠一个魔法棒每台设备每日限一次
</p>
</div>
<div class="panel_wrap">

View File

@@ -6,7 +6,7 @@
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>peko</title>
<title>piko</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/index.css">
@@ -22,7 +22,7 @@
<div class="button2-wrapper download">
</div>
<div class="eori">
<div class="weixin-name">peko客服微信pekokefu01</div>
<div class="weixin-name">piko客服微信pikokefu01</div>
<p>粤网文:(2018)8220-2981号</p>
<p class="recordfoot">
<i class="record"></i>

View File

@@ -25,7 +25,7 @@
<meta name="msapplication-tap-highlight" content="no">
<meta name="apple-mobile-web-app-capable" content="no" />
<meta name="format-detection" content="telephone=no">
<title>peko</title>
<title>piko</title>
<!-- <link rel="stylesheet" href="./home/css/reset.css"> -->
<link rel="stylesheet" href="./css/reset.css">
@@ -47,7 +47,7 @@
<!--<a href="javascript:void(0)" class="jumpUrl"><img src="./home/images/pc/iosBtn.png" alt=""></a>-->
</div>
<div class="eori">
<div class="weixin-name">peko客服微信pekokefu01</div>
<div class="weixin-name">piko客服微信pikokefu01</div>
<p>粤网文:(2018)8220-2981号</p>
<p class="recordfoot">
<i class="record"></i>

View File

@@ -5,7 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>探索peko</title>
<title>探索piko</title>
<!-- <%- include('../html_tpl/style.html') %> -->
<link rel="stylesheet" href="./css/index.css">

View File

@@ -36,7 +36,7 @@ let shareObj = {
type: 2,
data: {
msg: 'llllll',
title: '我的peko一周年报告',
title: '我的piko一周年报告',
imgUrl: 'https://beta.api.pekolive.com/peko/modules/wxPubPay/images/logo.png',
desc: '我的专属称号竟然是这样的!快来试试你的~',
}

View File

@@ -19,7 +19,7 @@
<h3>嗨,鹅宝</h3>
<p class="p1">还记得<span><b></b><b></b><b></b></span></p>
<p>我们第一次相遇</p>
<p>截止目前peko已陪伴你<span class="sp1"></span>天~</p>
<p>截止目前piko已陪伴你<span class="sp1"></span>天~</p>
</div>
<div class="touchBox">
<img src="./images/time_cinema/touch.png" alt="">
@@ -29,7 +29,7 @@
<div class="bg bg2">
<div class="text">
<h3>过去的一年</h3>
<p>你有<span class="sp1">2222222</span>天都在peko里畅游</p>
<p>你有<span class="sp1">2222222</span>天都在piko里畅游</p>
<p>累计登入<span class="sp2">22222222</span></p>
<p>你一共探索了<span class="sp3">2222</span>个房间</p>
<p>其中<span class="sp4">ID:5200</span>的房间陪伴你最久</p>
@@ -79,7 +79,7 @@
<div class="bg bg5">
<div class="text">
<p>无论未来如何</p>
<p>希望peko还能陪伴你度过岁岁年年~</p>
<p>希望piko还能陪伴你度过岁岁年年~</p>
<p>在此授予你:</p>
<h3><span>XXXX</span>称号</h3>
</div>

View File

@@ -13,7 +13,7 @@
<div class="content"></div>
<div class="activityReward"></div>
<div class="but"></div>
<div class="text">该活动最终解释权归peko平台所有</div>
<div class="text">该活动最终解释权归piko平台所有</div>
<script src="../../common/js/flexible.js"></script>
<script src="../../common/js/jquery-3.2.1.min.js"></script>
<script src="../../common/js/common2.js"></script>

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>peko棋王杯</title>
<title>piko棋王杯</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/qiwang.css">
</head>

View File

@@ -13,7 +13,7 @@
<div class="content"></div>
<div class="activityReward"></div>
<div class="but"></div>
<div class="text">该活动最终解释权归peko平台所有</div>
<div class="text">该活动最终解释权归piko平台所有</div>
<script src="../../common/js/flexible.js"></script>
<script src="../../common/js/jquery-3.2.1.min.js"></script>
<script src="../../common/js/common2.js"></script>

View File

@@ -126,7 +126,7 @@
<li><span>1</span>集齐所有福卡即可获得瓜分奖池的机会,瓜分金额随机,集齐次数越多,瓜分次数越多,瓜分奖励统一一次发放至账户</li>
<li><span>2</span>瓜分奖励时间:<p class="tip">2月12日0点至2月15日0点</p></li>
<li><span>3</span>获得敬业福需找客服报备赠送对应的装扮,赠送次数不叠加,每人仅限报备一次装扮</li>
<li><span>4</span>有任何疑问可添加官方客服<p class="tip">pekokefu01</p>进行咨询</li>
<li><span>4</span>有任何疑问可添加官方客服<p class="tip">pikokefu01</p>进行咨询</li>
</ul>
</div>
<!-- 尾部图片 -->

View File

@@ -32,7 +32,7 @@ let shareObj = {
type: 2,
data: {
msg: 'llllll',
title: '上peko开黑交友玩游戏',
title: '上piko开黑交友玩游戏',
imgUrl: 'https://api.pekolive.com/peko/modules/wxPubPay/images/logo.png',
desc: '邀请好友得金铲铲豪华大礼,快来加入吧!',
}
@@ -48,8 +48,8 @@ const getInviteList = () => {
if(res.code === 200){
userInfo = res.data.inviteUser
if(pubInfo.deviceInfo.app == 'pekoEnterprise'){
shareObj.data.link = shareObj.data.showUrl = `${urlPrefix}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pekoEnterprise'
if(pubInfo.deviceInfo.app == 'pikoEnterprise'){
shareObj.data.link = shareObj.data.showUrl = `${urlPrefix}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pikoEnterprise'
}else{
shareObj.data.link = shareObj.data.showUrl = `${urlPrefix}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid
}

View File

@@ -30,7 +30,7 @@
</div>
<!-- 我的豆子 -->
<div class="w_myBeans">
<p>每成功邀请一位新人好友即可获得200金豆好友下载peko并登录金豆即刻到账</p>
<p>每成功邀请一位新人好友即可获得200金豆好友下载piko并登录金豆即刻到账</p>
<span>我的金豆:<b></b> <i>刷新 <img src="./images/refresh.png" alt=""></i></span>
</div>
<!-- tab 切换 -->
@@ -96,7 +96,7 @@
<div class="z_user_info">
<img src="" alt="" class="z_user_avatar">
<p>
<span class="z_user_nick">peko</span>
<span class="z_user_nick">piko</span>
<span class="z_user_erban">ID666666</span>
</p>
<span class="z_user_bonus">总获得:<span>0</span>金豆</span>
@@ -108,7 +108,7 @@
<div class="z_content">
<p class="z_title">兑换成功</p>
<img src="./images/350.png" alt="" class="z_award_pic">
<p class="z_award_name">peko新用户游戏激励金3.8元</p>
<p class="z_award_name">piko新用户游戏激励金3.8元</p>
<p class="z_award_get_way">已放入我的装扮</p>
<img src="./images/know-btn.png" alt="" class="z_know">
</div>

View File

@@ -7,7 +7,7 @@ let w_link;
let share = {
title: '英雄联盟手游皮肤免费送!!',
// link: link,
desc: '来peko更有丰厚游戏激励金等你来~',
desc: '来piko更有丰厚游戏激励金等你来~',
imgUrl: 'https://api.pekolive.com/peko/modules/wxPubPay/images/logo.png'
}
let shareObj = {
@@ -141,13 +141,13 @@ const awardObj = [
pic: './images/nameplate.png'
},
{
name: 'peko新用户游戏激励金3.8元',
desc: 'peko新用户游戏<br>激励金3.8元',
name: 'piko新用户游戏激励金3.8元',
desc: 'piko新用户游戏<br>激励金3.8元',
pic: './images/cash.png'
},
{
name: 'peko新用户游戏激励金5.8元',
desc: 'peko新用户游戏<br>激励金5.8元',
name: 'piko新用户游戏激励金5.8元',
desc: 'piko新用户游戏<br>激励金5.8元',
pic: './images/cash.png'
},
{

View File

@@ -10,7 +10,7 @@
</head>
<body>
<div class="lead">
<p>peko的小可爱们~</p>
<p>piko的小可爱们~</p>
<p>快来踏上星际探索的旅途吧</p>
<p>送出小星球可探索到各个星球的物资</p>
<p>最高可探索到7777鉆的礼物哦~</p>

View File

@@ -204,7 +204,7 @@
<div class="explain">
1.若出现挂机三次及以上,则取消参与活动资格。</br>
2.奖励将于三个工作日内发放。 </br>
3.活动最终解释权归peko所有。
3.活动最终解释权归piko所有。
</div>
<div class="code">
<img src="./images/wx_code.jpg" alt="">

View File

@@ -5,7 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko公会招募令</title>
<title>piko公会招募令</title>
<style>
img {
width: 100%;

View File

@@ -5,11 +5,11 @@ var info = {};
var betaUrl = 'https://beta.api.pekolive.com/peko/activity/recruit/index.html';
var realUrl = tranUrl + '/peko/activity/recruit/index.html';
var share = {
title: 'peko公会招募令',
title: 'piko公会招募令',
link: tranUrl + '/peko/activity/recruit/index.html',
// imgUrl: 'https://img.letusmix.com/new_logo.png',
imgUrl: 'https://api.pekolive.com/peko/modules/wxPubPay/images/logo.png',
desc: 'peko公会招募令',// 分享描述
desc: 'piko公会招募令',// 分享描述
};
if (EnvCheck() == 'test') {
var vConsole = new VConsole();

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko</title>
<title>piko</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/index.css?v=2.0">
</head>
@@ -21,7 +21,7 @@
<p class="ticket-left-num">当前剩余:<span>0</span></p>
</div>
<div class="form-wrap">
<input type="text" placeholder="输入注册peko的手机号" class="mobile-number" maxlength="11" id="mobile-number">
<input type="text" placeholder="输入注册piko的手机号" class="mobile-number" maxlength="11" id="mobile-number">
<div class="verify-wrap">
<input type="text" placeholder="输入验证码" class="verify-ipt" id="verify-ipt">
<p class="verify-btn">获取验证码</p>
@@ -38,7 +38,7 @@
<p class="huode">获得</p>
<img alt="">
<p class="ticket-name"></p>
<p class="tip1">快去peko参赛赢赏金吧~</p>
<p class="tip1">快去piko参赛赢赏金吧~</p>
<a class="success-btn">去参赛>></a>
</div>
@@ -51,7 +51,7 @@
<div class="bottom">
<img src="./images/logo.png" alt="">
<p>来peko打游戏争夺更多赏金</p>
<p>来piko打游戏争夺更多赏金</p>
<a class="download">下载APP</a>
</div>

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko</title>
<title>piko</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/invalid.css">
</head>

View File

@@ -49,12 +49,12 @@ const getTicketDetail = () => {
if(browser.android){
options = {
scheme: {
protocol: 'pekoapp',
protocol: 'pikoapp',
host: 'linkedme'
},
intent: {
package: 'com.mango.peko',
scheme: 'pekoapp',
package: 'com.mango.piko',
scheme: 'pikoapp',
},
universal: {
host: 'api.zhongjialx.com',
@@ -118,7 +118,7 @@ const getCode = (mobile) => {
showLoading()
$.ajax({
type: 'POST',
url: urlPrefix + '/sms/getCode?app=peko',
url: urlPrefix + '/sms/getCode?app=piko',
data: {
mobile,
type: 1
@@ -181,8 +181,8 @@ const drawTicket = (params) => {
$('.index-wrap').hide()
$('.success-wrap').show()
} else if (res.code === 230003) {
$('.shade-content .title').html('该手机号未注册pekoApp<br>无法领取门票')
$('.shade-content .content-tip').html('请先前往pekoApp完成注册再来领取哦~')
$('.shade-content .title').html('该手机号未注册pikoApp<br>无法领取门票')
$('.shade-content .content-tip').html('请先前往pikoApp完成注册再来领取哦~')
$('.shade-content .content-btn').html('去APP内注册>>')
$('.shade-mask').show()
} else if (res.code === 230004) {

View File

@@ -124,7 +124,7 @@ function checkVersion() {
webApp: u.indexOf('Safari') > -1, //是否web应该程序没有头部与底部
weixin: u.indexOf('MicroMessenger') > -1, //是否微信
qq: u.match(/\sQQ/i) == " qq", //是否QQ
pekoApp: u.match('pekoApp'),
pikoApp: u.match('pikoApp'),
app: u.match('tutuApp') //是否在app内
};
}

View File

@@ -767,8 +767,8 @@ function networkRequest (reqObj = {}, type) {
var browser = checkVersion();
const pubHeader = {};
pubHeader.app = type != 'yinbaos' ? pubInfo.deviceInfo.app : 'yinbao'
// app: 'peko',
// app: pubInfo.deviceInfo.app.indexOf('peko') != -1 ? 'peko' : 'PlanetStar',
// app: 'piko',
// app: pubInfo.deviceInfo.app.indexOf('piko') != -1 ? 'piko' : 'PlanetStar',
pubHeader.appVersion = pubInfo.deviceInfo.appVersion || ''
pubHeader.os = pubInfo.deviceInfo.os || ''
pubHeader.os_version = pubInfo.deviceInfo.osVersion || ''

View File

@@ -25,7 +25,7 @@
<meta name="msapplication-tap-highlight" content="no">
<meta name="apple-mobile-web-app-capable" content="no" />
<meta name="format-detection" content="telephone=no">
<title>peko</title>
<title>piko</title>
<!-- <link rel="stylesheet" href="./home/css/reset.css"> -->
<link rel="stylesheet" href="./css/reset.css">

View File

@@ -5,18 +5,18 @@ let urlData = getQueryString()
let channelData = urlData.channel
//定义官方渠道包
const channelDict = {
'peko0': 'https://image.lecheng163.com/peko_peko0.apk',
'peko1': 'https://image.lecheng163.com/peko_peko1.apk',
'peko2': 'https://image.lecheng163.com/peko_peko2.apk',
'peko3': 'https://image.lecheng163.com/peko_peko3.apk',
'peko4': 'https://image.lecheng163.com/peko_peko4.apk',
'peko5': 'https://image.lecheng163.com/peko_peko5.apk',
'peko6': 'https://image.lecheng163.com/peko_peko6.apk',
'peko7': 'https://image.lecheng163.com/peko_peko7.apk',
'peko8': 'https://image.lecheng163.com/peko_peko8.apk',
'peko9': 'https://image.lecheng163.com/peko_peko9.apk',
'peko10': 'https://image.lecheng163.com/peko_peko10.apk',
'gongzhonghao': 'https://image.lecheng163.com/peko_gongzhonghao.apk',
'piko0': 'https://image.lecheng163.com/piko_piko0.apk',
'piko1': 'https://image.lecheng163.com/piko_piko1.apk',
'piko2': 'https://image.lecheng163.com/piko_piko2.apk',
'piko3': 'https://image.lecheng163.com/piko_piko3.apk',
'piko4': 'https://image.lecheng163.com/piko_piko4.apk',
'piko5': 'https://image.lecheng163.com/piko_piko5.apk',
'piko6': 'https://image.lecheng163.com/piko_piko6.apk',
'piko7': 'https://image.lecheng163.com/piko_piko7.apk',
'piko8': 'https://image.lecheng163.com/piko_piko8.apk',
'piko9': 'https://image.lecheng163.com/piko_piko9.apk',
'piko10': 'https://image.lecheng163.com/piko_piko10.apk',
'gongzhonghao': 'https://image.lecheng163.com/piko_gongzhonghao.apk',
'zhaohui': 'https://image.lecheng163.com/zhaohui.apk'
// 'baomihua01': 'https://image.lecheng163.com/accompany_release_v_213_1_baomihua01_sign.apk'
@@ -25,7 +25,7 @@ $(function () {
let version = checkVersion()
//判断url参数是否是与渠道包名一致
let androidUrl = null;
channelDict.hasOwnProperty(channelData) ? androidUrl = channelDict[channelData] : androidUrl = 'https://image.lecheng163.com/peko_official.apk';
channelDict.hasOwnProperty(channelData) ? androidUrl = channelDict[channelData] : androidUrl = 'https://image.lecheng163.com/piko_official.apk';
let iosUrl = 'http://doudouyue.com/8axv' //ios企业包
// let iosUrl = 'https://apps.apple.com/cn/app/id1571083482' //ios商店包

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko技术服务支持</title>
<title>piko技术服务支持</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/index.css">
<style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 553 KiB

After

Width:  |  Height:  |  Size: 554 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
@@ -25,7 +25,7 @@
<meta name="msapplication-tap-highlight" content="no">
<meta name="apple-mobile-web-app-capable" content="no" />
<meta name="format-detection" content="telephone=no">
<title>peko</title>
<title>piko</title>
<!-- <link rel="stylesheet" href="./home/css/reset.css"> -->
<link rel="stylesheet" href="./css/reset.css">

View File

@@ -7,18 +7,18 @@ const urlPrefix = getUrlPrefix()
let channelData = urlData.channel
//定义官方渠道包
const channelDict = {
'peko0': 'https://image.lecheng163.com/peko_peko0.apk',
'peko1': 'https://image.lecheng163.com/peko_peko1.apk',
'peko2': 'https://image.lecheng163.com/peko_peko2.apk',
'peko3': 'https://image.lecheng163.com/peko_peko3.apk',
'peko4': 'https://image.lecheng163.com/peko_peko4.apk',
'peko5': 'https://image.lecheng163.com/peko_peko5.apk',
'peko6': 'https://image.lecheng163.com/peko_peko6.apk',
'peko7': 'https://image.lecheng163.com/peko_peko7.apk',
'peko8': 'https://image.lecheng163.com/peko_peko8.apk',
'peko9': 'https://image.lecheng163.com/peko_peko9.apk',
'peko10': 'https://image.lecheng163.com/peko_peko10.apk',
'gongzhonghao': 'https://image.lecheng163.com/peko_gongzhonghao.apk',
'poke0': 'https://image.lecheng163.com/poke_poke0.apk',
'poke1': 'https://image.lecheng163.com/poke_poke1.apk',
'poke2': 'https://image.lecheng163.com/poke_poke2.apk',
'poke3': 'https://image.lecheng163.com/poke_poke3.apk',
'poke4': 'https://image.lecheng163.com/poke_poke4.apk',
'poke5': 'https://image.lecheng163.com/poke_poke5.apk',
'poke6': 'https://image.lecheng163.com/poke_poke6.apk',
'poke7': 'https://image.lecheng163.com/poke_poke7.apk',
'poke8': 'https://image.lecheng163.com/poke_poke8.apk',
'poke9': 'https://image.lecheng163.com/poke_poke9.apk',
'poke10': 'https://image.lecheng163.com/poke_poke10.apk',
'gongzhonghao': 'https://image.lecheng163.com/poke_gongzhonghao.apk',
'zhaohui': 'https://image.lecheng163.com/zhaohui.apk'
// 'baomihua01': 'https://image.lecheng163.com/accompany_release_v_213_1_baomihua01_sign.apk'
@@ -115,6 +115,6 @@ $(function () {
}
})
$('.apk').click(function () {
window.location.href = 'https://img.pekolive.com/peko_official.apk'
window.location.href = 'https://img.pekolive.com/piko_official.apk'
})
})

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko技术服务支持</title>
<title>piko技术服务支持</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/index.css">
<style>

View File

@@ -25,7 +25,7 @@
<meta name="msapplication-tap-highlight" content="no">
<meta name="apple-mobile-web-app-capable" content="no" />
<meta name="format-detection" content="telephone=no">
<title>peko</title>
<title>piko</title>
<!-- <link rel="stylesheet" href="./home/css/reset.css"> -->
<link rel="stylesheet" href="./css/reset.css">

View File

@@ -7,18 +7,18 @@ const urlPrefix = getUrlPrefix()
let channelData = urlData.channel
//定义官方渠道包
const channelDict = {
'peko0': 'https://image.lecheng163.com/peko_peko0.apk',
'peko1': 'https://image.lecheng163.com/peko_peko1.apk',
'peko2': 'https://image.lecheng163.com/peko_peko2.apk',
'peko3': 'https://image.lecheng163.com/peko_peko3.apk',
'peko4': 'https://image.lecheng163.com/peko_peko4.apk',
'peko5': 'https://image.lecheng163.com/peko_peko5.apk',
'peko6': 'https://image.lecheng163.com/peko_peko6.apk',
'peko7': 'https://image.lecheng163.com/peko_peko7.apk',
'peko8': 'https://image.lecheng163.com/peko_peko8.apk',
'peko9': 'https://image.lecheng163.com/peko_peko9.apk',
'peko10': 'https://image.lecheng163.com/peko_peko10.apk',
'gongzhonghao': 'https://image.lecheng163.com/peko_gongzhonghao.apk',
'piko0': 'https://image.lecheng163.com/piko_piko0.apk',
'piko1': 'https://image.lecheng163.com/piko_piko1.apk',
'piko2': 'https://image.lecheng163.com/piko_piko2.apk',
'piko3': 'https://image.lecheng163.com/piko_piko3.apk',
'piko4': 'https://image.lecheng163.com/piko_piko4.apk',
'piko5': 'https://image.lecheng163.com/piko_piko5.apk',
'piko6': 'https://image.lecheng163.com/piko_piko6.apk',
'piko7': 'https://image.lecheng163.com/piko_piko7.apk',
'piko8': 'https://image.lecheng163.com/piko_piko8.apk',
'piko9': 'https://image.lecheng163.com/piko_piko9.apk',
'piko10': 'https://image.lecheng163.com/piko_piko10.apk',
'gongzhonghao': 'https://image.lecheng163.com/piko_gongzhonghao.apk',
'zhaohui': 'https://image.lecheng163.com/zhaohui.apk'
// 'baomihua01': 'https://image.lecheng163.com/accompany_release_v_213_1_baomihua01_sign.apk'
@@ -53,7 +53,7 @@ $(function () {
//判断url参数是否是与渠道包名一致
let androidUrl = null;
channelDict.hasOwnProperty(channelData) ? androidUrl = channelDict[channelData] : androidUrl = 'https://play.google.com/store/apps/details?id=com.vele.peko';
channelDict.hasOwnProperty(channelData) ? androidUrl = channelDict[channelData] : androidUrl = 'https://play.google.com/store/apps/details?id=com.vele.piko';
let iosUrl = 'http://doudouyue.com/8axv' //ios企业包
// let iosUrl = 'https://apps.apple.com/cn/app/id1571083482' //ios商店包
@@ -117,7 +117,7 @@ $(function () {
})
// goglo跳转
$('.googlePlay').click(function () {
window.location.href = 'https://play.google.com/store/apps/details?id=com.vele.peko'
window.location.href = 'https://play.google.com/store/apps/details?id=com.vele.piko'
})
$('.appleStore').click(function () {
// console.log(version, 'version');
@@ -128,6 +128,6 @@ $(function () {
}
})
$('.apk').click(function () {
window.location.href = 'https://img.pekolive.com/peko_official.apk'
window.location.href = 'https://img.pekolive.com/piko_official.apk'
})
})

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko技术服务支持</title>
<title>piko技术服务支持</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/index.css">
<style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

@@ -19,7 +19,7 @@
<!-- tab切换 -->
<div class="tab">
<div class="active">玩法概率<span></span></div>
<div>玩法规则<span></span></div>
<div>玩法规则<span></span></div>
</div>
<!-- 内容 -->
<ul class="tab1">
@@ -27,10 +27,10 @@
<div class="txBox">
<img src="" alt="">
</div>
<div class="giftName">我又我又我又啊</div>
<div class="giftName"></div>
<img src="" alt="" class="icon">
<div class="score">202.5W</div>
<div class="probability">0%</div>
<div class="score"></div>
<div class="probability"></div>
</li>
</ul>
<div class="tab2">

View File

@@ -5,7 +5,7 @@ if (env == 'test') {
new VConsole();
}
let appName = 'peko'
let appName = 'piko'
// 封装layer消息提醒框
let layerIndex
@@ -100,7 +100,7 @@ $(function () {
if(browser.android){
let channel = JSON.parse(pubInfo.deviceInfo).channel
if(channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1){
appName = 'peko'
appName = 'piko'
}
}
}

View File

@@ -0,0 +1,53 @@
body {
width: 100%;
height: 21.6533333333rem;
margin: 0 auto;
}
.back {
position: fixed;
top: 0.9333333333rem;
left: 0.4533333333rem;
z-index: 9999;
width: 0.8266666667rem;
height: 0.8266666667rem;
}
.back img {
width: 100%;
height: 100%;
}
.back p {
color: #fff;
font-size: 0.4266666667rem;
position: absolute;
width: 9rem;
left: 0;
top: 0;
height: 100%;
text-align: center;
line-height: 0.8266666667rem;
}
.box {
width: 10rem;
height: 30.0933333333rem;
background: url(../images/bg.png) no-repeat;
background-size: 100% 100%;
position: relative;
margin: 0 auto 0;
}
.box .user {
width: 8.4rem;
height: 2rem;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.box .user1 {
top: 22.7rem;
}
.box .user2 {
top: 24.6rem;
}
/*# sourceMappingURL=index.css.map */

View File

@@ -0,0 +1,62 @@
@function px2rem($px, $rem:75) {
@return $px / $rem+rem;
}
html {}
body {
width: 100%;
height: px2rem(1624, );
margin: 0 auto;
}
.back {
position: fixed;
top: px2rem(70, );
left: px2rem(34, );
z-index: 9999;
width: px2rem(62, );
height: px2rem(62, );
img {
width: 100%;
height: 100%;
}
p {
color: #fff;
font-size: px2rem(32, );
position: absolute;
width: 9rem;
left: 0;
top: 0;
height: 100%;
text-align: center;
line-height: px2rem(62, );
}
}
.box {
width: px2rem(750, );
height: px2rem(2257, );
background: url(../images/bg.png) no-repeat;
background-size: 100% 100%;
position: relative;
margin: 0 auto 0;
.user {
width: 8.4rem;
height: 2rem;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.user1 {
top: 22.7rem;
}
.user2 {
top: 24.6rem;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>代充</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<!-- 頂部返回 -->
<div class="back">
<img src="./images/travel/back.png" alt="">
</div>
<!-- 背景 -->
<div class="box">
<div class="user user1"></div>
<div class="user user2"></div>
</div>
</body>
</html>
<script src="../../common/js/flexible.js"></script>
<script src="../../common/js/jquery-3.2.1.min.js"></script>
<script src="../../common/js/common2.js"></script>
<script src="../../common/js/layer.js"></script>
<script src="../../common/js/vconsole.min.js"></script>
<script src="./js/index.js"></script>

View File

@@ -0,0 +1,78 @@
let urlPrefix = getUrlPrefix()
let browser = checkVersion()
let env = EnvCheck();
if (env == 'test') {
new VConsole();
}
// 封装layer消息提醒框
let layerIndex
const showLoading = (content = '加載中...') => {
layer.open({
type: 2,
shadeClose: false,
content,
success (e) {
layerIndex = $(e).attr('index')
}
})
}
const hideLoading = (index) => {
layer.close(index)
}
const toastMsg = (content = '操作完成', time = 2) => {
layer.open({
content,
time,
skin: 'msg'
})
}
// 初始化函數
$(function () {
setTimeout(function () {
getInfoFromClient()
setTimeout(function () {
// 頁面全屏
if (browser.app) {
if (browser.android) {
window.androidJsObj.initShowNav(false)
} else {
window.webkit.messageHandlers.initShowNav.postMessage(0)
}
};
// 頂部返回事件
$('.back').click(() => {
if (browser.android) {
window.androidJsObj.closeWebView()
} else {
window.webkit.messageHandlers.closeWebView.postMessage(null)
}
})
}, 100)
})
})
$('.box .user1').click(function () {
if (browser.app) {
if (browser.ios) {
window.webkit.messageHandlers.openPersonPage.postMessage(44534);
} else if (browser.android) {
if (androidJsObj && typeof androidJsObj === 'object') {
window.androidJsObj.openPersonPage(44534);
}
}
} else {
toastMsg('請在app內中打開')
}
})
$('.box .user2').click(function () {
if (browser.app) {
if (browser.ios) {
window.webkit.messageHandlers.openPersonPage.postMessage(50728);
} else if (browser.android) {
if (androidJsObj && typeof androidJsObj === 'object') {
window.androidJsObj.openPersonPage(50728);
}
}
} else {
toastMsg('請在app內中打開')
}
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

After

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 713 KiB

After

Width:  |  Height:  |  Size: 757 KiB

View File

@@ -17,7 +17,7 @@
<div class="avatar"><img src="../../common/images/logo.png" alt=""></div>
<div class="personal-info">
<p class="nickname"></p>
<p class="platform-code"><span class="appName">peko</span>號:<span class="erbanNo"></span></p>
<p class="platform-code"><span class="appName">piko</span>號:<span class="erbanNo"></span></p>
<p class="invite-code">邀请码:<span></span></p>
</div>
<div class="qr">
@@ -28,7 +28,7 @@
<div class="share-btn"></div>
<div class="rule-wrap">
<div>分享規則</div>
<p>1.分享後好友註冊並下載Peko填寫您的邀請碼:</p>
<p>1.分享後好友註冊並下載piko填寫您的邀請碼:</p>
<p>2.同一臺手機設備註冊的用戶,視為同一用戶;</p>
<p>3.每位新用戶僅能填寫一次邀請碼, 填寫後不可修改。</p>
</div>

View File

@@ -44,9 +44,9 @@ let shareObj = {
type: 2,
data: {
msg: 'llllll',
title: '來peko邂逅你的專屬聲音',
title: '來piko邂逅你的專屬聲音',
imgUrl: 'http://beta.img.pekolive.com/logo.png',
desc: '聽聲音玩遊戲交朋友來peko~',
desc: '聽聲音玩遊戲交朋友來piko~',
}
}
@@ -67,10 +67,10 @@ const getInviteList = () => {
renderUserInfo()
renderInviteList()
if(pubInfo.deviceInfo.app == 'pekoEnterprise'){
shareObj.data.link = shareObj.data.showUrl = `${urlPrefixNew}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pekoEnterprise'
if(pubInfo.deviceInfo.app == 'pikoEnterprise'){
shareObj.data.link = shareObj.data.showUrl = `${urlPrefixNew}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pikoEnterprise'
$('.qr').qrcode(`${urlPrefixNew}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pekoEnterprise')
$('.qr').qrcode(`${urlPrefixNew}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid + '&enterprise=pikoEnterprise')
$('canvas').addClass('active')
}else{
shareObj.data.link = shareObj.data.showUrl = `${urlPrefixNew}/peko/modules/game/register.html?inviteCode=` + res.data.inviteCode + '&shareUid=' + userInfo.uid
@@ -184,7 +184,7 @@ $(function(){
if (channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1) {
$('.banner img').attr('src', './images/banner-yy.png')
$('.avatar img').attr('src', './images/logo-yy.png')
$('.appName').html('peko')
$('.appName').html('piko')
}
}
}

View File

@@ -72,7 +72,7 @@ $(function () {
// if (channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1) {
// $('.avatar img').attr('src', './images/logo-yy.png')
// $('.bottom img').attr('src', './images/logo-yy.png')
// $('.appName').html('peko')
// $('.appName').html('piko')
// }
// }
// }

View File

@@ -9,8 +9,8 @@
<meta property="og:url" content="" />
<meta property="fb:app_id" content="1266232494209868" />
<meta property="og:type" content="website" />
<meta property="og:title" content="來peko邂逅你的專屬聲音" />
<meta property="og:description" content="聽聲音玩遊戲交朋友來peko" />
<meta property="og:title" content="來piko邂逅你的專屬聲音" />
<meta property="og:description" content="聽聲音玩遊戲交朋友來piko" />
<!-- https://pic.lecheng163.com/ananLogo256.png -->
<meta class="content_image" property="og:image" content="http://beta.img.pekolive.com/logo-512.png?from_wecom=1" />
<meta property="og:image:width" content="256">
@@ -22,7 +22,7 @@
<body>
<div class="avatar"><img src="./images/logo.png" alt=""></div>
<p class="tip">邀你来<span class="appName">peko</span>一起聊天打游戏</p>
<p class="tip">邀你来<span class="appName">piko</span>一起聊天打游戏</p>
<div class="form-wrap">
<div class="verify-wrap">
<input type="text" placeholder="邀请码:" class="verify-ipt" disabled>
@@ -35,7 +35,7 @@
<div class="bottom">
<img src="./images/logo.png" alt="">
<p><span class="appName">peko</span>,邂逅你的專屬聲音~</p>
<p><span class="appName">piko</span>,邂逅你的專屬聲音~</p>
<a class="download" id="bomlinkdomload1">下载APP</a>
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -19,7 +19,7 @@
<div class="myInfo">
<img src="./images/login/logo.png" alt="">
<div>
<p>Peko</p>
<p>piko</p>
<b>ID:</b>
</div>
</div>

View File

@@ -193,11 +193,11 @@ $('.box .hone').click(function () {
if (idOrPhone) {
$('.idLogin').show();
$('.phone').hide();
$('.box .hone').text('Peko手機號登錄');
$('.box .hone').text('piko手機號登錄');
} else {
$('.phone').show();
$('.idLogin').hide();
$('.box .hone').text('Peko賬號登錄');
$('.box .hone').text('piko賬號登錄');
}
})
// 打開選擇區號

View File

@@ -181,10 +181,10 @@ $('.but').click(function () {
return;
}
withdrawUserAccount(
$('.box1 div .bankCard').val(),
$('.box1 div .name').val(),
$('.box1 div .card').val(),
$('.box1 div .phone').val(),
$('.box2 div .bankCard').val(),
$('.box2 div .name').val(),
$('.box2 div .card').val(),
$('.box2 div .phone').val(),
$('.box3 .idBox .z .documents').attr('src'),
$('.box3 .idBox .f .documents').attr('src')
);

View File

@@ -23,7 +23,7 @@
<div class="box">
<!-- 賬號登入 -->
<div class="idLogin">
<input type="number" class="id" placeholder="請輸入Peko賬號">
<input type="number" class="id" placeholder="請輸入piko賬號">
<input type="password" class="password" placeholder="請輸入密碼">
</div>
<!-- 手機號登入 -->
@@ -41,7 +41,7 @@
</div>
<!-- 登入按鈕 -->
<div class="but">登錄</div>
<div class="hone">Peko手機號登錄</div>
<div class="hone">piko手機號登錄</div>
</div>
<!-- 區號選擇 -->
<div class="area">

View File

@@ -19,7 +19,7 @@
<div class="myInfo">
<img src="./images/login/logo.png" alt="">
<div>
<p>Peko</p>
<p>piko</p>
<b>ID:</b>
</div>
</div>

View File

@@ -48,7 +48,7 @@
<div class="title">认证须知</div>
<p>1.该认证仅支持中国内地(不含港澳台地区)的用户。</p>
<p>2.请确保填写身份证信息真实并与本人一致。</p>
<p>3.根据国家相关的法律法规,您需要提供您的真实身份信息(真实姓名、身份证号)、身份证正反面照片、面部信息以完成实名验证。您所提供的身份信息仅用于身份验证,未经您本人的许可不会被用于其他用途。这些信息属于个人敏感信息,我们将会尽可能的保护您个人敏感信息的安全。如果您不提供这些信息,您将不能使用提现等相关功能,但不影响您继续使用"peko"的其他服务。</p>
<p>3.根据国家相关的法律法规,您需要提供您的真实身份信息(真实姓名、身份证号)、身份证正反面照片、面部信息以完成实名验证。您所提供的身份信息仅用于身份验证,未经您本人的许可不会被用于其他用途。这些信息属于个人敏感信息,我们将会尽可能的保护您个人敏感信息的安全。如果您不提供这些信息,您将不能使用提现等相关功能,但不影响您继续使用"piko"的其他服务。</p>
<p>4.为保护用户权益,开启实名认证后我们将不提供解除恢复的功能,请谅解。</p>
<p>5.一个身份证最多用于5个用户账号的实名认证。</p>
</div>

View File

@@ -21,7 +21,7 @@ $(function () {
if (browser.android) {
let channel = JSON.parse(pubInfo.deviceInfo).channel
if (channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1) {
$('.appName').html('peko')
$('.appName').html('piko')
}
}
}

View File

@@ -50,7 +50,7 @@
<div class="title">认证须知</div>
<p>1.该认证仅支持中国内地(不含港澳台地区)的用户。</p>
<p>2.请确保填写身份证信息真实并与本人一致。</p>
<p>3.根据国家相关的法律法规,您需要提供您的真实身份信息(真实姓名、身份证号)、身份证正反面照片、面部信息以完成实名验证。您所提供的身份信息仅用于身份验证,未经您本人的许可不会被用于其他用途。这些信息属于个人敏感信息,我们将会尽可能的保护您个人敏感信息的安全。如果您不提供这些信息,您将不能使用提现等相关功能,但不影响您继续使用"<span class="appName">peko</span>"的其他服务。</p>
<p>3.根据国家相关的法律法规,您需要提供您的真实身份信息(真实姓名、身份证号)、身份证正反面照片、面部信息以完成实名验证。您所提供的身份信息仅用于身份验证,未经您本人的许可不会被用于其他用途。这些信息属于个人敏感信息,我们将会尽可能的保护您个人敏感信息的安全。如果您不提供这些信息,您将不能使用提现等相关功能,但不影响您继续使用"<span class="appName">piko</span>"的其他服务。</p>
<p>4.为保护用户权益,开启实名认证后我们将不提供解除恢复的功能,请谅解。</p>
<p>5.一个身份证最多用于5个用户账号的实名认证。</p>
<p>6.若人脸认证遇到问题,<a href="../rule/identity-rule.html">请点击这里</a></p>
@@ -97,7 +97,7 @@
appname.html("hello处CP");
$('.link-1').attr('href', '../rule/live-protocol.html?platform=planet')
} else {
appname.html("peko");
appname.html("piko");
}
</script>
</body>

View File

@@ -72,7 +72,7 @@
if(locateObj.platform == "planet"){
appname.html("hello处CP");
}else{
appname.html("peko");
appname.html("piko");
}
</script>
</html>

View File

@@ -25,7 +25,7 @@
<div class="invite-rule-wrap">
<div class="invite-rule-title">邀请规则</div>
<div class="invite-rule-item">
1. 好友下载并注册peko填写你的邀请码<br> 2. 同一台手机设备注册的用户,视为同一用户;<br> 3. 每位新用户仅能填写一次邀请码,填写后不可修改。
1. 好友下载并注册piko填写你的邀请码<br> 2. 同一台手机设备注册的用户,视为同一用户;<br> 3. 每位新用户仅能填写一次邀请码,填写后不可修改。
</div>
</div>

View File

@@ -9,7 +9,7 @@ if (EnvCheck() === 'test') {
new VConsole()
}
let share = {
title: '玩游戏交朋友来peko',
title: '玩游戏交朋友来piko',
// link: link,
desc: '人美声甜小姐姐在线连麦陪玩,有趣的人正在等你~',
imgUrl: 'https://api.pekolive.com/peko/modules/wxPubPay/images/logo.png'
@@ -50,7 +50,7 @@ $(function () {
function getData() {
$.ajax({
type: 'GET',
url: '/inviteCode/getList?app=peko',
url: '/inviteCode/getList?app=piko',
headers: {
pub_ticket: info.ticket,
pub_uid: info.uid

View File

@@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>peko</title>
<title>piko</title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/share.css">
@@ -14,7 +14,7 @@
<body>
<div class="wrap">
<img src="" alt="">
<div class="text">邀你一起来畅游peko</div>
<div class="text">邀你一起来畅游piko</div>
<div class="code-text">注 册 时 请 填 邀 请 码,点 击 复 制</div>
<div class="code" data-clipboard-target="#int"></div>
<input type="text" style="opacity:0;z-index:-1" id="int">

View File

@@ -76,7 +76,7 @@
</div>
<!-- <div class="explain">
<p class="explain-tit">等级说明</p>
<p class="explain-title">魅力等级是您在peko个人魅力的成长属性每收到1个鉆石的礼物积累一点魅力值随着您的等级上升您的等级标致会有相应的颜色变化。</p>
<p class="explain-title">魅力等级是您在piko个人魅力的成长属性每收到1个鉆石的礼物积累一点魅力值随着您的等级上升您的等级标致会有相应的颜色变化。</p>
</div> -->
<img class="explain-img" src="./images/charm.png" alt="">
</div>

View File

@@ -20,9 +20,9 @@
账号注销后,你将无法使用本软件提供的各项服务, 你所获得的道具,积分,资格等等内容等视为你自行放弃,同样将无法继续使用。你理解并同意,本软件无法协助你重新回复前述服务。
</div>
<div class="tip1">
请再次确认以上信息,确认后,在下方输入框中输入“我已知晓并确认账号注销”点击确认注销后完成注销操作
请再次确认以上信息,确认后,在下方输入框中输入“我已知曉並确認賬號注銷”点击确认注销后完成注销操作
</div>
<input type="text" placeholder="请输入:我已知晓并确认账号注销" class="ipt">
<input type="text" placeholder="请输入:我已知曉並确認賬號注銷" class="ipt">
<div class="confirm_btn">确认注销</div>
</div>
@@ -30,7 +30,7 @@
<div class="content">
<div class="popup_title">确认账号信息</div>
<div class="nick">昵称:<span></span></div>
<div class="erbanNo">peko号<span></span></div>
<div class="erbanNo">piko号<span></span></div>
<div class="popup_tip">确认注销该账号</div>
<div class="popup_btn_wrap">
<div class="cancel">取消</div>

View File

@@ -13,11 +13,11 @@ $(function(){
$('.confirm_btn').click(() => {
text = $('.ipt').val().trim()
if (text === '我已知晓并确认账号注销') {
if (text === '我已知曉並确認賬號注銷') {
getUserInfo()
$('.popup').show()
} else {
toastMsg('输入错误,请检查输入内容')
toastMsg('輸入錯誤,請檢查輸入內容')
}
})
@@ -56,7 +56,8 @@ const confirmLogout = (text) => {
type: 'POST',
url: urlPrefix + '/user/cancel/users',
data: {
confirmTxt : text
// confirmTxt : text
confirmTxt : '我已知晓并确认账号注销',
},
success(res) {
if (res.code === 200) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 KiB

After

Width:  |  Height:  |  Size: 411 KiB

View File

@@ -115,7 +115,7 @@
</div>
</div>
<!-- 本活動最終解釋權歸所有&本活動以及活動獎勵與蘋果公司無關 -->
<h3>本活動最終解釋權歸Peko所有</h3>
<h3>本活動最終解釋權歸piko所有</h3>
<h3>本活動以及活動獎勵與Google/蘋果公司無關</h3>
<!-- 活動規則彈窗 -->
<div class="rule_pub">

View File

@@ -1 +1 @@
<!DOCTYPE html><html><head><meta charset=UTF-8><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><title>peko</title><link href=./static/css/app.9024cf5b5b638d6196f8d6723d6c3288.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.eb68c1619df0aa11f84e.js></script><script type=text/javascript src=./static/js/vendor.e1f3b20580f807878b61.js></script><script type=text/javascript src=./static/js/app.94ae80952039b32488f3.js></script></body></html>
<!DOCTYPE html><html><head><meta charset=UTF-8><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><title>piko</title><link href=./static/css/app.498bcaab4b2334304266fed5f9edd58c.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3964e8df7c53aaf1420b.js></script><script type=text/javascript src=./static/js/vendor.e1f3b20580f807878b61.js></script><script type=text/javascript src=./static/js/app.cf9bfe1678608b636044.js></script></body></html>

View File

@@ -1,2 +1,2 @@
webpackJsonp([11],{Mdy7:function(t,s){},RpvA:function(t,s,e){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var a=e("hff3"),i=e("+EAh"),n=e("X2Oc"),r=e("Fd2+"),o=e("KTi7"),c=e("QLzJ"),d=e("Z4iZ"),u={data:function(){return{number:"",gold:0,purse:{},info:{},showKeyboard:!1,password:""}},components:{navigation:a.a},created:function(){document.title="金幣兌換鉆石",this.getInfo(),this.getPurse(),n.a.initNav({type:4,data:{msg:"",link:"",title:"",showUrl:"",imgUrl:"",desc:""}})},methods:{back:function(){this.$router.go(-1)},sure:function(){if(this.number<=0)return this.$toast("兌換數量不可為0");this.showKeyboard=!0},exchange:function(){var t=this;r.b.loading({message:"加載中...",forbidClick:!0});var s="";s=Object(d.b)().app?Object(o.a)(this.password,"1ea53d260ecf11e7b56e00163e046a26"):Object(c.a)(this.password+"");var e={uid:window.sessionStorage.getItem("uid"),changeNum:this.number,paymentPwd:s,changeType:2};Object(i.d)(e).then(function(s){null!=s.data.data?(r.b.clear,Object(r.b)("兌換成功"),t.getPurse()):(r.b.clear,Object(r.b)(s.data.message),t.$message.error(s.data.message))})},getPurse:function(){var t=this;Object(i.q)({uid:window.sessionStorage.getItem("uid")}).then(function(s){null!=s.data?(t.purse=s.data.data,window.console.log(t.purse)):t.$message.error(s.data.message)})},getInfo:function(){this.info.uid=n.a.tools.nativeUtils.getUid(),this.info.ticket=n.a.tools.nativeUtils.getTicket()},onInput:function(t){this.password=(this.password+t).slice(0,6),6==this.password.length&&(this.showKeyboard=!1,this.exchange(),this.password="")},onDelete:function(){this.password=this.password.slice(0,this.password.length-1)}}},l={render:function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"box-all"},[this.$store.state.isApp?t._e():e("navigation",{attrs:{title:"金幣兌換鉆石",rightTitle:""}}),t._v(" "),e("div",{staticClass:"crystal-father"},[t._m(0),t._v(" "),e("span",{staticClass:"crystal-text"},[t._v("余額:")]),t._v(" "),e("span",{staticClass:"crystal-number"},[t._v(t._s(t.purse.golds))])]),t._v(" "),e("div",{staticClass:"input-number"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.number,expression:"number"}],staticClass:"number",attrs:{placeholder:"請輸入兌換的金幣數量"},domProps:{value:t.number},on:{input:function(s){s.target.composing||(t.number=s.target.value)}}})]),t._v(" "),e("div",{staticClass:"diamond"},[t._m(1),t._v(" "),e("span",{staticClass:"crystal-text"},[t._v("余額:")]),t._v(" "),e("span",{staticClass:"crystal-number"},[t._v(t._s(t.purse.diamonds))])]),t._v(" "),e("div",{staticClass:"sure",on:{click:t.sure}},[t._v("確認兌換")]),t._v(" "),e("div",{staticClass:"bottom-text"},[t._v("金幣可兌換鉆石兌換比率1金幣=1鉆石金幣數量必須為10的整數倍。")]),t._v(" "),e("van-password-input",{directives:[{name:"show",rawName:"v-show",value:t.showKeyboard,expression:"showKeyboard"}],staticClass:"passwrod-input",attrs:{value:t.password,focused:t.showKeyboard},on:{focus:function(s){t.showKeyboard=!0}}}),t._v(" "),e("van-number-keyboard",{attrs:{show:t.showKeyboard},on:{blur:function(s){t.showKeyboard=!1},input:t.onInput,delete:t.onDelete}})],1)},staticRenderFns:[function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"crystal"},[s("img",{attrs:{src:e("Yxsz")}})])},function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"crystal"},[s("img",{attrs:{src:e("QCm6")}})])}]};var h=e("VU/8")(u,l,!1,function(t){e("Mdy7")},"data-v-9cfce14a",null);s.default=h.exports}});
//# sourceMappingURL=11.5d316356ba01de644f13.js.map
webpackJsonp([10],{Mdy7:function(t,s){},RpvA:function(t,s,e){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var a=e("hff3"),i=e("+EAh"),n=e("X2Oc"),r=e("Fd2+"),o=e("KTi7"),c=e("QLzJ"),d=e("Z4iZ"),u={data:function(){return{number:"",gold:0,purse:{},info:{},showKeyboard:!1,password:""}},components:{navigation:a.a},created:function(){document.title="金幣兌換鉆石",this.getInfo(),this.getPurse(),n.a.initNav({type:4,data:{msg:"",link:"",title:"",showUrl:"",imgUrl:"",desc:""}})},methods:{back:function(){this.$router.go(-1)},sure:function(){if(this.number<=0)return this.$toast("兌換數量不可為0");this.showKeyboard=!0},exchange:function(){var t=this;r.b.loading({message:"加載中...",forbidClick:!0});var s="";s=Object(d.b)().app?Object(o.a)(this.password,"1ea53d260ecf11e7b56e00163e046a26"):Object(c.a)(this.password+"");var e={uid:window.sessionStorage.getItem("uid"),changeNum:this.number,paymentPwd:s,changeType:2};Object(i.d)(e).then(function(s){null!=s.data.data?(r.b.clear,Object(r.b)("兌換成功"),t.getPurse()):(r.b.clear,Object(r.b)(s.data.message),t.$message.error(s.data.message))})},getPurse:function(){var t=this;Object(i.q)({uid:window.sessionStorage.getItem("uid")}).then(function(s){null!=s.data?(t.purse=s.data.data,window.console.log(t.purse)):t.$message.error(s.data.message)})},getInfo:function(){this.info.uid=n.a.tools.nativeUtils.getUid(),this.info.ticket=n.a.tools.nativeUtils.getTicket()},onInput:function(t){this.password=(this.password+t).slice(0,6),6==this.password.length&&(this.showKeyboard=!1,this.exchange(),this.password="")},onDelete:function(){this.password=this.password.slice(0,this.password.length-1)}}},l={render:function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"box-all"},[this.$store.state.isApp?t._e():e("navigation",{attrs:{title:"金幣兌換鉆石",rightTitle:""}}),t._v(" "),e("div",{staticClass:"crystal-father"},[t._m(0),t._v(" "),e("span",{staticClass:"crystal-text"},[t._v("余額:")]),t._v(" "),e("span",{staticClass:"crystal-number"},[t._v(t._s(t.purse.golds))])]),t._v(" "),e("div",{staticClass:"input-number"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.number,expression:"number"}],staticClass:"number",attrs:{placeholder:"請輸入兌換的金幣數量"},domProps:{value:t.number},on:{input:function(s){s.target.composing||(t.number=s.target.value)}}})]),t._v(" "),e("div",{staticClass:"diamond"},[t._m(1),t._v(" "),e("span",{staticClass:"crystal-text"},[t._v("余額:")]),t._v(" "),e("span",{staticClass:"crystal-number"},[t._v(t._s(t.purse.diamonds))])]),t._v(" "),e("div",{staticClass:"sure",on:{click:t.sure}},[t._v("確認兌換")]),t._v(" "),e("div",{staticClass:"bottom-text"},[t._v("金幣可兌換鉆石兌換比率1金幣=1鉆石金幣數量必須為10的整數倍。")]),t._v(" "),e("van-password-input",{directives:[{name:"show",rawName:"v-show",value:t.showKeyboard,expression:"showKeyboard"}],staticClass:"passwrod-input",attrs:{value:t.password,focused:t.showKeyboard},on:{focus:function(s){t.showKeyboard=!0}}}),t._v(" "),e("van-number-keyboard",{attrs:{show:t.showKeyboard},on:{blur:function(s){t.showKeyboard=!1},input:t.onInput,delete:t.onDelete}})],1)},staticRenderFns:[function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"crystal"},[s("img",{attrs:{src:e("Yxsz")}})])},function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"crystal"},[s("img",{attrs:{src:e("QCm6")}})])}]};var h=e("VU/8")(u,l,!1,function(t){e("Mdy7")},"data-v-9cfce14a",null);s.default=h.exports}});
//# sourceMappingURL=10.8520f094936f10a3326e.js.map

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
webpackJsonp([10],{CXh3:function(t,v,n){"use strict";Object.defineProperty(v,"__esModule",{value:!0});var a={created:function(){document.title="領獎說明"},components:{navigation:n("hff3").a}},e={render:function(){var t=this,v=t.$createElement,n=t._self._c||v;return n("div",{staticClass:"wrap"},[this.$store.state.isApp?t._e():n("navigation",{attrs:{title:"領獎說明"}}),t._v(" "),n("div",{staticClass:"part-title nomt"},[t._v("一、領獎綁定說明")]),t._v(" "),n("p",[t._v("\n 1.領獎前請前往app設置支付密碼、實名認證和綁定支付寶。\n ")]),t._v(" "),n("p",[t._v("\n 2.綁定時務必確保所填信息有效,填寫資料錯誤導致的提現失敗損失將由用戶自行承擔。\n ")]),t._v(" "),n("p",[t._v("\n 3.修改支付寶賬號時,暫不支持對賬號主體(即真實姓名和身份證號)進行修改。\n ")]),t._v(" "),n("div",{staticClass:"part-title"},[t._v("二、領獎規則")]),t._v(" "),n("p",[t._v("\n 1.用戶賬戶內可領獎金額大於等於10元時可申請領獎每次領獎按聽獎金額的6.5%收取交易手續費。\n ")]),t._v(" "),n("p",[t._v("\n 2.用戶隨時可申請提現每周可提現5次提交申請後審核及到賬時間為1個工作日內具體到賬時間以綁定的支付寶賬號的到賬時間為準。\n ")]),t._v(" "),n("div",{staticClass:"part-title"},[t._v("三、領獎審核不通過的原因")]),t._v(" "),t._m(0),t._v(" "),n("p",[t._v("\n 2.如平臺檢測到用戶的peko賬戶有作弊或異常狀況平臺將拒絕該用戶對收益進行提現。\n ")]),t._v(" "),n("p",[t._v("3.如對領獎金額有疑問,可聯系在線客服並提供相關信息進行查詢。")]),t._v(" "),n("p",[t._v("\n 4.peko有權依據國家政策、技術條件、產品功能等變化需要而對本說明進行修改並將修改後的說明予以發布並對具體獎金發放規則及《領獎說明》擁有最終解釋權。\n ")])],1)},staticRenderFns:[function(){var t=this,v=t.$createElement,n=t._self._c||v;return n("div",[n("p",[t._v("1.支付寶賬號未完成實名認證或開啟了隱私保護功能。")]),t._v(" "),n("p",{staticClass:"a"},[t._v("解決辦法:")]),t._v(" "),n("p",{staticClass:"b"},[t._v("1完成支付寶收款賬號實名認證")]),t._v(" "),n("p",{staticClass:"b c"},[t._v("2前往支付寶→我的→設置→開啟【通過手機號找到我】")]),t._v(" "),n("p",{staticClass:"b"},[t._v("3完成上述操作後可重新進行領獎申請")])])}]};var s=n("VU/8")(a,e,!1,function(t){n("g5R/")},"data-v-c7f91342",null);v.default=s.exports},"g5R/":function(t,v){}});
//# sourceMappingURL=10.7701ab9520657412738d.js.map
webpackJsonp([12],{CXh3:function(t,v,n){"use strict";Object.defineProperty(v,"__esModule",{value:!0});var a={created:function(){document.title="領獎說明"},components:{navigation:n("hff3").a}},s={render:function(){var t=this,v=t.$createElement,n=t._self._c||v;return n("div",{staticClass:"wrap"},[this.$store.state.isApp?t._e():n("navigation",{attrs:{title:"領獎說明"}}),t._v(" "),n("div",{staticClass:"part-title nomt"},[t._v("一、領獎綁定說明")]),t._v(" "),n("p",[t._v("\n 1.領獎前請前往app設置支付密碼、實名認證和綁定支付寶。\n ")]),t._v(" "),n("p",[t._v("\n 2.綁定時務必確保所填信息有效,填寫資料錯誤導致的提現失敗損失將由用戶自行承擔。\n ")]),t._v(" "),n("p",[t._v("\n 3.修改支付寶賬號時,暫不支持對賬號主體(即真實姓名和身份證號)進行修改。\n ")]),t._v(" "),n("div",{staticClass:"part-title"},[t._v("二、領獎規則")]),t._v(" "),n("p",[t._v("\n 1.用戶賬戶內可領獎金額大於等於10元時可申請領獎每次領獎按聽獎金額的6.5%收取交易手續費。\n ")]),t._v(" "),n("p",[t._v("\n 2.用戶隨時可申請提現每周可提現5次提交申請後審核及到賬時間為1個工作日內具體到賬時間以綁定的支付寶賬號的到賬時間為準。\n ")]),t._v(" "),n("div",{staticClass:"part-title"},[t._v("三、領獎審核不通過的原因")]),t._v(" "),t._m(0),t._v(" "),n("p",[t._v("\n 2.如平臺檢測到用戶的piko賬戶有作弊或異常狀況平臺將拒絕該用戶對收益進行提現。\n ")]),t._v(" "),n("p",[t._v("3.如對領獎金額有疑問,可聯系在線客服並提供相關信息進行查詢。")]),t._v(" "),n("p",[t._v("\n 4.piko有權依據國家政策、技術條件、產品功能等變化需要而對本說明進行修改並將修改後的說明予以發布並對具體獎金發放規則及《領獎說明》擁有最終解釋權。\n ")])],1)},staticRenderFns:[function(){var t=this,v=t.$createElement,n=t._self._c||v;return n("div",[n("p",[t._v("1.支付寶賬號未完成實名認證或開啟了隱私保護功能。")]),t._v(" "),n("p",{staticClass:"a"},[t._v("解決辦法:")]),t._v(" "),n("p",{staticClass:"b"},[t._v("1完成支付寶收款賬號實名認證")]),t._v(" "),n("p",{staticClass:"b c"},[t._v("2前往支付寶→我的→設置→開啟【通過手機號找到我】")]),t._v(" "),n("p",{staticClass:"b"},[t._v("3完成上述操作後可重新進行領獎申請")])])}]};var _=n("VU/8")(a,s,!1,function(t){n("ZTcj")},"data-v-3cf7f732",null);v.default=_.exports},ZTcj:function(t,v){}});
//# sourceMappingURL=12.34fff916cd789ce22038.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
webpackJsonp([6],{"8FdI":function(t,e){},CroZ:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=i("+EAh"),s=i("Fd2+");i("7+uW").a.use(s.c);var o=null,a={data:function(){return{phone:"",code:"",getCodeTitle:"獲取驗證碼",styleCode:!0}},methods:{blurBtn:function(){setTimeout(function(){var t=document.documentElement.scrollTop||document.body.scrollTop||0;window.scrollTo(0,Math.max(t-1,0))},100)},getCode:function(){var t=this;if(this.styleCode){/^[1]([3-9])[0-9]{9}$/.test(this.phone)?(this.styleCode=!1,Object(n.h)({mobile:this.phone,type:1}).then(function(e){200===e.data.code&&(Object(s.b)(e.data.message),t.timer())})):Object(s.b)("請輸入正確的手機號")}},logining:function(){var t=this;/^[1]([3-9])[0-9]{9}$/.test(this.phone)?(s.b.loading({message:"loading",forbidClick:!0}),Object(n.p)({mobile:this.phone,code:this.code}).then(function(e){if(200===e.data.code){window.sessionStorage.clear(),info.ticket=e.data.data.token,info.uid=e.data.data.uid,window.sessionStorage.setItem("uid",info.uid),window.sessionStorage.setItem("ticket",info.ticket),window.sessionStorage.setItem("jurisdiction","h5");var i=setTimeout(function(){t.$router.replace({path:"/MyIncome"}),s.b.clear(),clearTimeout(i)},600)}}).catch(function(t){503===t.code&&Object(s.b)("該手機號未註冊\n請先去pekoapp完成註冊")})):Object(s.b)("請輸入正確的手機號")},timer:function(){var t=this,e=60;clearInterval(o),this.getCodeTitle="重新獲取("+e+"s)",o=setInterval(function(){e--,t.getCodeTitle="重新獲取("+e+"s)",e<=0&&(clearInterval(o),t.styleCode=!0,t.getCodeTitle="獲取驗證碼")},1e3)}}},c={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("img",{attrs:{src:i("Nl6a")}}),t._v(" "),n("p",{staticClass:"tit"},[t._v("登錄peko")]),t._v(" "),n("div",{staticClass:"max"},[n("div",{staticClass:"phone"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.phone,expression:"phone"}],attrs:{type:"type",maxlength:"11",placeholder:"請輸入手機號碼"},domProps:{value:t.phone},on:{blur:t.blurBtn,input:function(e){e.target.composing||(t.phone=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"phone_code"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.code,expression:"code"}],attrs:{type:"type",maxlength:"5",placeholder:"請輸入驗證碼"},domProps:{value:t.code},on:{blur:t.blurBtn,input:function(e){e.target.composing||(t.code=e.target.value)}}}),t._v(" "),n("span",{staticClass:"get-code",on:{click:function(e){return t.getCode()}}},[t._v(t._s(t.getCodeTitle))])])]),t._v(" "),n("p",{staticClass:"btn",attrs:{"data-lg":"1"},on:{click:t.logining}},[t._v("登錄")]),t._v(" "),t._m(0),t._v(" "),t._m(1),t._v(" "),t._m(2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"message"},[this._v("\n 驗證碼錯誤或者過期\n "),e("span")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"pop1"},[e("div",{staticClass:"content"},[e("div",{staticClass:"message_"}),this._v(" "),e("p",{staticClass:"check1",attrs:{id:"confirm1"}},[this._v("確定")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"contact"},[e("p",[this._v("peko客服微信號pekokefu01")]),this._v(" "),e("p",[e("span",[this._v("粵網文:(2018)8220-2981號")]),this._v(" "),e("span",[e("a",{attrs:{href:"http://www.beian.miit.gov.cn"}},[this._v("粵ICP備20032171")])])])])}]};var r=i("VU/8")(a,c,!1,function(t){i("8FdI")},"data-v-d33fe426",null);e.default=r.exports},Nl6a:function(t,e,i){t.exports=i.p+"static/fonts/login.e6f4fdc.png"}});
//# sourceMappingURL=6.83f6e0e15e71cd5ff43a.js.map
webpackJsonp([7],{"21YC":function(t,e){},CroZ:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=i("+EAh"),s=i("Fd2+");i("7+uW").a.use(s.c);var o=null,a={data:function(){return{phone:"",code:"",getCodeTitle:"獲取驗證碼",styleCode:!0}},methods:{blurBtn:function(){setTimeout(function(){var t=document.documentElement.scrollTop||document.body.scrollTop||0;window.scrollTo(0,Math.max(t-1,0))},100)},getCode:function(){var t=this;if(this.styleCode){/^[1]([3-9])[0-9]{9}$/.test(this.phone)?(this.styleCode=!1,Object(n.h)({mobile:this.phone,type:1}).then(function(e){200===e.data.code&&(Object(s.b)(e.data.message),t.timer())})):Object(s.b)("請輸入正確的手機號")}},logining:function(){var t=this;/^[1]([3-9])[0-9]{9}$/.test(this.phone)?(s.b.loading({message:"loading",forbidClick:!0}),Object(n.p)({mobile:this.phone,code:this.code}).then(function(e){if(200===e.data.code){window.sessionStorage.clear(),info.ticket=e.data.data.token,info.uid=e.data.data.uid,window.sessionStorage.setItem("uid",info.uid),window.sessionStorage.setItem("ticket",info.ticket),window.sessionStorage.setItem("jurisdiction","h5");var i=setTimeout(function(){t.$router.replace({path:"/MyIncome"}),s.b.clear(),clearTimeout(i)},600)}}).catch(function(t){503===t.code&&Object(s.b)("該手機號未註冊\n請先去pikoapp完成註冊")})):Object(s.b)("請輸入正確的手機號")},timer:function(){var t=this,e=60;clearInterval(o),this.getCodeTitle="重新獲取("+e+"s)",o=setInterval(function(){e--,t.getCodeTitle="重新獲取("+e+"s)",e<=0&&(clearInterval(o),t.styleCode=!0,t.getCodeTitle="獲取驗證碼")},1e3)}}},c={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("img",{attrs:{src:i("Nl6a")}}),t._v(" "),n("p",{staticClass:"tit"},[t._v("登錄piko")]),t._v(" "),n("div",{staticClass:"max"},[n("div",{staticClass:"phone"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.phone,expression:"phone"}],attrs:{type:"type",maxlength:"11",placeholder:"請輸入手機號碼"},domProps:{value:t.phone},on:{blur:t.blurBtn,input:function(e){e.target.composing||(t.phone=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"phone_code"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.code,expression:"code"}],attrs:{type:"type",maxlength:"5",placeholder:"請輸入驗證碼"},domProps:{value:t.code},on:{blur:t.blurBtn,input:function(e){e.target.composing||(t.code=e.target.value)}}}),t._v(" "),n("span",{staticClass:"get-code",on:{click:function(e){return t.getCode()}}},[t._v(t._s(t.getCodeTitle))])])]),t._v(" "),n("p",{staticClass:"btn",attrs:{"data-lg":"1"},on:{click:t.logining}},[t._v("登錄")]),t._v(" "),t._m(0),t._v(" "),t._m(1),t._v(" "),t._m(2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"message"},[this._v("\n 驗證碼錯誤或者過期\n "),e("span")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"pop1"},[e("div",{staticClass:"content"},[e("div",{staticClass:"message_"}),this._v(" "),e("p",{staticClass:"check1",attrs:{id:"confirm1"}},[this._v("確定")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"contact"},[e("p",[this._v("piko客服微信號pikokefu01")]),this._v(" "),e("p",[e("span",[this._v("粵網文:(2018)8220-2981號")]),this._v(" "),e("span",[e("a",{attrs:{href:"http://www.beian.miit.gov.cn"}},[this._v("粵ICP備20032171")])])])])}]};var r=i("VU/8")(a,c,!1,function(t){i("21YC")},"data-v-3a48ffed",null);e.default=r.exports},Nl6a:function(t,e,i){t.exports=i.p+"static/fonts/login.e6f4fdc.png"}});
//# sourceMappingURL=7.c60dff0fd854d6fc291f.js.map

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
webpackJsonp([14],{"2KIr":function(e,n){},"4ml/":function(e,n){},NHnr:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i=t("7+uW"),o={render:function(){var e=this.$createElement,n=this._self._c||e;return n("div",{attrs:{id:"app"}},[n("router-view")],1)},staticRenderFns:[]};var a=t("VU/8")({name:"App"},o,!1,function(e){t("fh2C")},null,null).exports,r=t("YaEn"),s=(t("2KIr"),t("NYxO")),c=t("Z4iZ"),d=Object(c.b)().app;console.log(d,"store"),i.a.use(s.a);var u=new s.a.Store({state:{info:{ticket:"123",uid:"678"},isApp:d},mutations:{setInfo:function(e,n){e.info.ticket=n.ticket,e.info.uid=n.uid}},getters:{getInfo:function(e){return e.info},getIsApp:function(e){return e.info}},actions:{getUserInfo:function(e){return e.state}}}),l=t("pFYg"),f=t.n(l);window.info={},window.getMessage=function(e,n){info[e]=n};t("4ml/");var m=t("Fd2+"),p=(t("sVYa"),t("Lw6n")),h=t.n(p),g=t("DVXL"),w=t.n(g);!function(){var e=Object(c.b)();if(e.app)if(window.sessionStorage.clear(),e.ios){var n=document.cookie.match(/\d+/);info.uid=n[0],window.webkit.messageHandlers.getTicket.postMessage(null),window.webkit.messageHandlers.getDeviceId.postMessage(null)}else e.android&&androidJsObj&&"object"===("undefined"==typeof androidJsObj?"undefined":f()(androidJsObj))&&(info.uid=parseInt(window.androidJsObj.getUid()),info.ticket=window.androidJsObj.getTicket(),info.deviceId=window.androidJsObj.getDeviceId());else info.uid=sessionStorage.getItem("uid")?sessionStorage.getItem("uid"):"",info.ticket=sessionStorage.getItem("ticket")?sessionStorage.getItem("ticket"):""}(),i.a.config.productionTip=!1,"test"===Object(c.a)()&&new h.a,w.a.attach(document.body),w.a.prototype.focus=function(e){var n;e.setSelectionRange&&0!==e.type.indexOf("date")&&"time"!==e.type&&"month"!==e.type?(n=e.value.length,e.focus(),e.setSelectionRange(n,n)):e.focus()},i.a.use(m.c),new i.a({el:"#app",router:r.a,store:u,components:{App:a},template:"<App/>"})},YaEn:function(e,n,t){"use strict";var i=t("7+uW"),o=t("/ocq");i.a.use(o.a);var a=new o.a({routes:[{path:"/MyIncome",name:"MyIncome",component:function(){return Promise.all([t.e(0),t.e(3)]).then(t.bind(null,"kutM"))}},{path:"/CrystalExchangeDiamond",name:"CrystalExchangeDiamond",component:function(){return Promise.all([t.e(0),t.e(8)]).then(t.bind(null,"3IW4"))}},{path:"/GoldExchangeDiamond",name:"GoldExchangeDiamond",component:function(){return Promise.all([t.e(0),t.e(11)]).then(t.bind(null,"RpvA"))}},{path:"/WithDraw",name:"WithDraw",component:function(){return Promise.all([t.e(0),t.e(4)]).then(t.bind(null,"9SZj"))}},{path:"/BindAlipay",name:"BindAlipay",component:function(){return Promise.all([t.e(0),t.e(2)]).then(t.bind(null,"b+Mi"))}},{path:"/CrystalLog",name:"CrystalLog",component:function(){return Promise.all([t.e(0),t.e(9)]).then(t.bind(null,"4tis"))}},{path:"/GoldLog",name:"GoldLog",component:function(){return Promise.all([t.e(0),t.e(12)]).then(t.bind(null,"b+89"))}},{path:"/DiamondLog",name:"DiamondLog",component:function(){return Promise.all([t.e(0),t.e(5)]).then(t.bind(null,"QAJJ"))},meta:{title:"鉆石記錄"}},{path:"/Login",name:"Login",component:function(){return Promise.all([t.e(0),t.e(6)]).then(t.bind(null,"CroZ"))},meta:{title:"登錄"}},{path:"/runningWater",name:"runningWater",component:function(){return t.e(7).then(t.bind(null,"Ok5E"))},meta:{title:"房間流水"}},{path:"/GameWithDrawDesc",name:"GameWithDrawDesc",component:function(){return Promise.all([t.e(0),t.e(10)]).then(t.bind(null,"CXh3"))},meta:{title:"領獎說明"}},{path:"/WithDrawInfoBind",name:"WithDrawInfoBind",component:function(){return Promise.all([t.e(0),t.e(1)]).then(t.bind(null,"Vj3e"))},meta:{title:"個人信息綁定"}}]});a.beforeEach(function(e,n,t){"Login"===n.name||window.sessionStorage.getItem("ticket")?t():setTimeout(function(){window.sessionStorage.setItem("uid",info.uid),window.sessionStorage.setItem("ticket",info.ticket),console.log(info,"router"),t()},50)}),n.a=a},Z4iZ:function(e,n,t){"use strict";t.d(n,"b",function(){return i}),t.d(n,"a",function(){return o});var i=function(){var e=navigator.userAgent;navigator.appVersion;return{trident:e.indexOf("Trident")>-1,presto:e.indexOf("Presto")>-1,webKit:e.indexOf("AppleWebKit")>-1,gecko:e.indexOf("Gecko")>-1&&-1==e.indexOf("KHTML"),mobile:!!e.match(/AppleWebKit.*Mobile.*/),ios:!!e.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),android:e.indexOf("Android")>-1||e.indexOf("Adr")>-1,iPhone:e.indexOf("iPhone")>-1,iPad:e.indexOf("iPad")>-1,webApp:-1==e.indexOf("Safari"),weixin:e.indexOf("MicroMessenger")>-1,qq:" qq"==e.match(/\sQQ/i),app:"pekoApp"==e.match("pekoApp")}},o=function(){if(window.location.href){var e=window.location.href,n=e.match(/api.uat.z/),t=e.match(/120.79.211.243/),i=e.match(/192.168/),o=e.match(/127.0.0.1/),a=e.match(/api.uat/),r=e.match(/beta./);return n||t||i||o||a||r?"test":"live"}}},fh2C:function(e,n){}},["NHnr"]);
//# sourceMappingURL=app.94ae80952039b32488f3.js.map
webpackJsonp([14],{"2KIr":function(e,n){},"4ml/":function(e,n){},NHnr:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i=t("7+uW"),o={render:function(){var e=this.$createElement,n=this._self._c||e;return n("div",{attrs:{id:"app"}},[n("router-view")],1)},staticRenderFns:[]};var a=t("VU/8")({name:"App"},o,!1,function(e){t("fh2C")},null,null).exports,r=t("YaEn"),s=(t("2KIr"),t("NYxO")),c=t("Z4iZ"),d=Object(c.b)().app;console.log(d,"store"),i.a.use(s.a);var u=new s.a.Store({state:{info:{ticket:"123",uid:"678"},isApp:d},mutations:{setInfo:function(e,n){e.info.ticket=n.ticket,e.info.uid=n.uid}},getters:{getInfo:function(e){return e.info},getIsApp:function(e){return e.info}},actions:{getUserInfo:function(e){return e.state}}}),l=t("pFYg"),f=t.n(l);window.info={},window.getMessage=function(e,n){info[e]=n};t("4ml/");var m=t("Fd2+"),p=(t("sVYa"),t("Lw6n")),h=t.n(p),g=t("DVXL"),w=t.n(g);!function(){var e=Object(c.b)();if(e.app)if(window.sessionStorage.clear(),e.ios){var n=document.cookie.match(/\d+/);info.uid=n[0],window.webkit.messageHandlers.getTicket.postMessage(null),window.webkit.messageHandlers.getDeviceId.postMessage(null)}else e.android&&androidJsObj&&"object"===("undefined"==typeof androidJsObj?"undefined":f()(androidJsObj))&&(info.uid=parseInt(window.androidJsObj.getUid()),info.ticket=window.androidJsObj.getTicket(),info.deviceId=window.androidJsObj.getDeviceId());else info.uid=sessionStorage.getItem("uid")?sessionStorage.getItem("uid"):"",info.ticket=sessionStorage.getItem("ticket")?sessionStorage.getItem("ticket"):""}(),i.a.config.productionTip=!1,"test"===Object(c.a)()&&new h.a,w.a.attach(document.body),w.a.prototype.focus=function(e){var n;e.setSelectionRange&&0!==e.type.indexOf("date")&&"time"!==e.type&&"month"!==e.type?(n=e.value.length,e.focus(),e.setSelectionRange(n,n)):e.focus()},i.a.use(m.c),new i.a({el:"#app",router:r.a,store:u,components:{App:a},template:"<App/>"})},YaEn:function(e,n,t){"use strict";var i=t("7+uW"),o=t("/ocq");i.a.use(o.a);var a=new o.a({routes:[{path:"/MyIncome",name:"MyIncome",component:function(){return Promise.all([t.e(0),t.e(3)]).then(t.bind(null,"kutM"))}},{path:"/CrystalExchangeDiamond",name:"CrystalExchangeDiamond",component:function(){return Promise.all([t.e(0),t.e(6)]).then(t.bind(null,"3IW4"))}},{path:"/GoldExchangeDiamond",name:"GoldExchangeDiamond",component:function(){return Promise.all([t.e(0),t.e(10)]).then(t.bind(null,"RpvA"))}},{path:"/WithDraw",name:"WithDraw",component:function(){return Promise.all([t.e(0),t.e(4)]).then(t.bind(null,"9SZj"))}},{path:"/BindAlipay",name:"BindAlipay",component:function(){return Promise.all([t.e(0),t.e(2)]).then(t.bind(null,"b+Mi"))}},{path:"/CrystalLog",name:"CrystalLog",component:function(){return Promise.all([t.e(0),t.e(9)]).then(t.bind(null,"4tis"))}},{path:"/GoldLog",name:"GoldLog",component:function(){return Promise.all([t.e(0),t.e(11)]).then(t.bind(null,"b+89"))}},{path:"/DiamondLog",name:"DiamondLog",component:function(){return Promise.all([t.e(0),t.e(5)]).then(t.bind(null,"QAJJ"))},meta:{title:"鉆石記錄"}},{path:"/Login",name:"Login",component:function(){return Promise.all([t.e(0),t.e(7)]).then(t.bind(null,"CroZ"))},meta:{title:"登錄"}},{path:"/runningWater",name:"runningWater",component:function(){return t.e(8).then(t.bind(null,"Ok5E"))},meta:{title:"房間流水"}},{path:"/GameWithDrawDesc",name:"GameWithDrawDesc",component:function(){return Promise.all([t.e(0),t.e(12)]).then(t.bind(null,"CXh3"))},meta:{title:"領獎說明"}},{path:"/WithDrawInfoBind",name:"WithDrawInfoBind",component:function(){return Promise.all([t.e(0),t.e(1)]).then(t.bind(null,"Vj3e"))},meta:{title:"個人信息綁定"}}]});a.beforeEach(function(e,n,t){"Login"===n.name||window.sessionStorage.getItem("ticket")?t():setTimeout(function(){window.sessionStorage.setItem("uid",info.uid),window.sessionStorage.setItem("ticket",info.ticket),console.log(info,"router"),t()},50)}),n.a=a},Z4iZ:function(e,n,t){"use strict";t.d(n,"b",function(){return i}),t.d(n,"a",function(){return o});var i=function(){var e=navigator.userAgent;navigator.appVersion;return{trident:e.indexOf("Trident")>-1,presto:e.indexOf("Presto")>-1,webKit:e.indexOf("AppleWebKit")>-1,gecko:e.indexOf("Gecko")>-1&&-1==e.indexOf("KHTML"),mobile:!!e.match(/AppleWebKit.*Mobile.*/),ios:!!e.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),android:e.indexOf("Android")>-1||e.indexOf("Adr")>-1,iPhone:e.indexOf("iPhone")>-1,iPad:e.indexOf("iPad")>-1,webApp:-1==e.indexOf("Safari"),weixin:e.indexOf("MicroMessenger")>-1,qq:" qq"==e.match(/\sQQ/i),app:"pekoApp"==e.match("pekoApp")}},o=function(){if(window.location.href){var e=window.location.href,n=e.match(/api.uat.z/),t=e.match(/120.79.211.243/),i=e.match(/192.168/),o=e.match(/127.0.0.1/),a=e.match(/api.uat/),r=e.match(/beta./);return n||t||i||o||a||r?"test":"live"}}},fh2C:function(e,n){}},["NHnr"]);
//# sourceMappingURL=app.cf9bfe1678608b636044.js.map

View File

@@ -0,0 +1,2 @@
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,f){for(var a,i,u,d=0,s=[];d<r.length;d++)i=r[d],t[i]&&s.push(t[i][0]),t[i]=0;for(a in c)Object.prototype.hasOwnProperty.call(c,a)&&(e[a]=c[a]);for(n&&n(r,c,f);s.length;)s.shift()();if(f)for(d=0;d<f.length;d++)u=o(o.s=f[d]);return u};var r={},t={15:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var c=document.getElementsByTagName("head")[0],f=document.createElement("script");f.type="text/javascript",f.charset="utf-8",f.async=!0,f.timeout=12e4,o.nc&&f.setAttribute("nonce",o.nc),f.src=o.p+"static/js/"+e+"."+{0:"9e4039d300ee641e0082",1:"65c8a24141285f752017",2:"a2b32e8c55ba73112c78",3:"9f4287dbc1ab35ee8eed",4:"95d3c8221db60b228eb2",5:"cfbd71b488f0ae20c621",6:"0e7ac399b5d59483b7f2",7:"c60dff0fd854d6fc291f",8:"43a07f21010bbe7fcd6c",9:"d02156509389fc441584",10:"8520f094936f10a3326e",11:"747d2b68b78534156c63",12:"34fff916cd789ce22038"}[e]+".js";var a=setTimeout(i,12e4);function i(){f.onerror=f.onload=null,clearTimeout(a);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return f.onerror=f.onload=i,c.appendChild(f),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.3964e8df7c53aaf1420b.js.map

View File

@@ -1,2 +0,0 @@
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,a,c){for(var f,i,u,d=0,s=[];d<r.length;d++)i=r[d],t[i]&&s.push(t[i][0]),t[i]=0;for(f in a)Object.prototype.hasOwnProperty.call(a,f)&&(e[f]=a[f]);for(n&&n(r,a,c);s.length;)s.shift()();if(c)for(d=0;d<c.length;d++)u=o(o.s=c[d]);return u};var r={},t={15:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var a=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.charset="utf-8",c.async=!0,c.timeout=12e4,o.nc&&c.setAttribute("nonce",o.nc),c.src=o.p+"static/js/"+e+"."+{0:"1b5c2ea8472946953399",1:"65c8a24141285f752017",2:"a2b32e8c55ba73112c78",3:"ed406b8ec0fd2ce7d3e3",4:"767ba8e6439ee368e707",5:"cfbd71b488f0ae20c621",6:"83f6e0e15e71cd5ff43a",7:"c4fa50566fd7f80d2aaa",8:"75bdd56bd8357a66d24a",9:"d02156509389fc441584",10:"7701ab9520657412738d",11:"5d316356ba01de644f13",12:"9fa60d0ceeb3ed4adc40"}[e]+".js";var f=setTimeout(i,12e4);function i(){c.onerror=c.onload=null,clearTimeout(f);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return c.onerror=c.onload=i,a.appendChild(c),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.eb68c1619df0aa11f84e.js.map

View File

@@ -18,7 +18,7 @@
<div class="icon">
<img src="./images/login.png" alt="">
</div>
<div class="text">peko社区登录确认</div>
<div class="text">piko社区登录确认</div>
<div class="btn">登录</div>
<!--<div class="toast"></div>-->
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -23,14 +23,14 @@
<!-- 头部 -->
<div class="header_top">
<div class="header_top_left">
<img src="./images/logo.png" alt=""><b id="pay_header_t_l">peko儲值中心</b>
<img src="./images/logo.png" alt=""><b id="pay_header_t_l">piko儲值中心</b>
</div>
<div class="header_top_right">
<img src="./images/more.png" alt=""><b></b>
</div>
</div>
<!-- 输入框 -->
<input class="user" type="text" id="pay_user_id" placeholder="請輸入peko賬號ID">
<input class="user" type="text" id="pay_user_id" placeholder="請輸入piko賬號ID">
</div>
<!-- 选择支付方式 -->
<div class="pay_method">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 806 KiB

After

Width:  |  Height:  |  Size: 237 KiB

View File

@@ -25,12 +25,12 @@
<!-- logo -->
<div class="header_top">
<img src="./images/logo.png" alt="">
<b id="pay_header_t_l">peko儲值中心</b>
<b id="pay_header_t_l">piko儲值中心</b>
</div>
<!-- 充值区域 -->
<div class="main">
<!-- 输入框 -->
<input class="user" type="text" id="pay_user_id" placeholder="請輸入peko賬號ID">
<input class="user" type="text" id="pay_user_id" placeholder="請輸入piko賬號ID">
<!-- 地区 -->
<div class="area">
<img src="./images/more.png" alt=""><b></b>

View File

@@ -21,7 +21,7 @@
</div>
<div class="bottom">
<p>充值失败,如需帮助可联系客服噢~</p>
<p>客服微信号pekokefu01</p>
<p>客服微信号pikokefu01</p>
</div>
</body>

View File

@@ -48,12 +48,12 @@
</div>
</div>
<div class="tips">peko禁止使用不合法信用卡和储蓄卡获取鉆石一经发现封禁账号及设备情节严重将报警处理</div>
<div class="tips">piko禁止使用不合法信用卡和储蓄卡获取鉆石一经发现封禁账号及设备情节严重将报警处理</div>
<div class="tips tipss">
peko严厉打击刷单类诈骗行为一旦发现我平台将追究其法律责任同时保留追究损失的权利我们呼吁用户如有收到以兼职赚钱为名义诱骗刷单的行为请联系客服举报情节严重者我们将交于警方处理如执意配合刷单行为造成的损失我们平台概不负责
piko严厉打击刷单类诈骗行为一旦发现我平台将追究其法律责任同时保留追究损失的权利我们呼吁用户如有收到以兼职赚钱为名义诱骗刷单的行为请联系客服举报情节严重者我们将交于警方处理如执意配合刷单行为造成的损失我们平台概不负责
</div>
<div class="kefu">
如有任何问题咨询客服LINEpekoyuyin
如有任何问题咨询客服LINEpikoyuyin
</div>
<div class="pop">
<div class="shade"></div>
@@ -93,7 +93,7 @@
<div class="content-wrap">
<div class="title">安全提醒</div>
<p class="desc">
peko为语音直播、语音社交平台充值仅用于平台内消费。请用户警惕任何以<span>兼职刷单返款</span><span>套现返现</span><span>高额返利</span><span>垫付手续费</span><span>假冒客服</span><span>游戏账号交易</span>等理由的交易骗局,请勿上当受骗。
piko为语音直播、语音社交平台充值仅用于平台内消费。请用户警惕任何以<span>兼职刷单返款</span><span>套现返现</span><span>高额返利</span><span>垫付手续费</span><span>假冒客服</span><span>游戏账号交易</span>等理由的交易骗局,请勿上当受骗。
</p>
<div class="example">
<div>

View File

@@ -271,7 +271,7 @@ const getOpenId = () => {
const getPaymentInfo = (params) => {
$.ajax({
type: 'POST',
url: urlPrefix + '/charge/apply2New?app=peko',
url: urlPrefix + '/charge/apply2New?app=piko',
data: params,
success: function (res) {
lock = !lock;
@@ -280,7 +280,7 @@ const getPaymentInfo = (params) => {
let nick = packages.nick;
let erbanNo = packages.erbanNo;
$pop.show();
$content.find('.toPerson').html('<p>向<span> ' + nick + '</span></p> <p>(peko号<span>' + erbanNo + '</span> )</p> <p>充值 <span> ' + price + ' 元?</span></p>');
$content.find('.toPerson').html('<p>向<span> ' + nick + '</span></p> <p>(piko号<span>' + erbanNo + '</span> )</p> <p>充值 <span> ' + price + ' 元?</span></p>');
payInOutter(packages)
} else if (res.code === 10108) {
// $('.cancel1').fadeIn(0)
@@ -317,7 +317,7 @@ const payInOutter = (packages) => {
const submitWxPayment = (params) => {
$.ajax({
type: 'POST',
url: urlPrefix + '/wx/submitPay?app=peko',
url: urlPrefix + '/wx/submitPay?app=piko',
data: params,
success: function (res) {
lock = !lock;
@@ -335,7 +335,7 @@ const submitWxPayment = (params) => {
// shade.toggle();
// $content.toggle();
$pop.show();
$content.find('.toPerson').html('<p>向<span> ' + nick + '</span></p> <p>(peko号<span>' + erbanNo + '</span> )</p> <p>充值 <span> ' + price + ' 元?</span></p>');
$content.find('.toPerson').html('<p>向<span> ' + nick + '</span></p> <p>(piko号<span>' + erbanNo + '</span> )</p> <p>充值 <span> ' + price + ' 元?</span></p>');
payInWxBrowser(packages)
} else if (res.code === 10108) {
@@ -500,7 +500,7 @@ $(function () {
if (_num === '' || !reg.test(_num)) {
$('.pop1 .content').removeClass('shiming')
mess('请输入正确的手机号或者peko号');
mess('请输入正确的手机号或者piko号');
lock = !lock;
return;
} else {

View File

@@ -24,7 +24,7 @@
<div class="shade-mask2">
<div class="dialog2">
<img src="./images/kefu.png" alt="">
<p>您暂时没有可选择的服务平台,<br> 请添加官方客服微信了解详情。 <br>微信号:<span>pekokefu01</span></p>
<p>您暂时没有可选择的服务平台,<br> 请添加官方客服微信了解详情。 <br>微信号:<span>pikokefu01</span></p>
</div>
</div>
</body>

View File

@@ -61,7 +61,7 @@ let userInfo = {}
const submitOrder = (params) => {
networkRequest({
type: 'POST',
url: urlPrefix + '/wx/submitPayForMiroMall?app=peko',
url: urlPrefix + '/wx/submitPayForMiroMall?app=piko',
data: params,
success(res){
if(res.code === 200){

Some files were not shown because too many files have changed in this diff Show More