diff --git a/view/peko/activity/explore/images/bg.png b/view/peko/activity/explore/images/bg.png
index c6775b1..8edf579 100644
Binary files a/view/peko/activity/explore/images/bg.png and b/view/peko/activity/explore/images/bg.png differ
diff --git a/view/peko/activity/explore/images/buy-btn.png b/view/peko/activity/explore/images/buy-btn.png
index 138ef83..0ec1f7c 100644
Binary files a/view/peko/activity/explore/images/buy-btn.png and b/view/peko/activity/explore/images/buy-btn.png differ
diff --git a/view/peko/activity/explore/images/introduce.png b/view/peko/activity/explore/images/introduce.png
index 4df490d..be498ef 100644
Binary files a/view/peko/activity/explore/images/introduce.png and b/view/peko/activity/explore/images/introduce.png differ
diff --git a/view/peko/activity/explore/images/logo.png b/view/peko/activity/explore/images/logo.png
index 118e24a..c700763 100644
Binary files a/view/peko/activity/explore/images/logo.png and b/view/peko/activity/explore/images/logo.png differ
diff --git a/view/peko/activity/explore/js/index.js b/view/peko/activity/explore/js/index.js
index f2a9ec1..4f207e7 100644
--- a/view/peko/activity/explore/js/index.js
+++ b/view/peko/activity/explore/js/index.js
@@ -5,7 +5,7 @@ if (env == 'test') {
new VConsole();
}
-// 封装layer消息提醒框
+// 封裝layer消息提醒框
let layerIndex
const showLoading = (content = '加載中...') => {
layer.open({
@@ -28,10 +28,10 @@ const toastMsg = (content = '操作完成', time = 2) => {
})
}
-// 获取用户信息
-let isGetUserInfoInterFace //是否获取到个人信息接口
+// 獲取用戶信息
+let isGetUserInfoInterFace //是否獲取到個人信息接口
const getUserInfo = (param) => {
- showLoading('获取个人信息中...')
+ showLoading('獲取個人信息中...')
networkRequest({
type: 'GET',
url: urlPrefix + '/activities/draw/queryTicketNum',
@@ -68,11 +68,11 @@ const getUserInfo = (param) => {
})
}
-// 获取礼包信息
-let isGetListPackInterFace //是否获取到礼包接口
+// 獲取禮包信息
+let isGetListPackInterFace //是否獲取到禮包接口
let listPack = []
const getListPack = () => {
- showLoading('获取礼包信息中...')
+ showLoading('獲取禮包信息中...')
networkRequest({
type: 'POST',
url: urlPrefix + '/activities/draw/getPackList',
@@ -97,18 +97,18 @@ const getListPack = () => {
})
}
-// 渲染礼包
+// 渲染禮包
let arrTips = [
- '赠送糖果1个',
- '随机赠送糖果7-10个',
- '随机赠送糖果70-100个',
- '随机赠送糖果700-1000个',
+ '贈送糖果1個',
+ '隨機贈送糖果7-10個',
+ '隨機贈送糖果70-100個',
+ '隨機贈送糖果700-1000個',
]
const renderList = () => {
listPack.map((item, index) => {
let $li = $('ul.buy-area li').eq(index)
$li.find('.headwear-name').html(item.name)
- $li.find('.headwear-price').html(item.sellingPrice + '钻石/天')
+ $li.find('.headwear-price').html(item.sellingPrice + '鉆石/天')
$li.find('.headwear-award').html(arrTips[index])
$('.content span').eq(index).html(item.name)
@@ -122,7 +122,7 @@ const renderList = () => {
})
}
-//只有两个接口都请求到数据,才渲染默认页面
+//只有兩個接口都請求到數據,才渲染默認頁面
const isShow = () => {
if(isGetListPackInterFace && isGetUserInfoInterFace){
hideLoading(layerIndex)
@@ -139,13 +139,13 @@ $(function(){
getListPack()
}, 50)
- // 点击玩法介绍按钮
+ // 點擊玩法介紹按鈕
$('.rule-btn').on('click', function () {
$('.shade').fadeIn(300)
$('.rule-mask').fadeIn(300)
$('body').css('overflow', 'hidden')
})
- // 关闭规则弹窗
+ // 關閉規則彈窗
$('.rule-mask .cancel').on('click', function(){
$('.shade').fadeOut(300)
$('.rule-mask').fadeOut(300)
@@ -162,11 +162,11 @@ $(function(){
e.stopPropagation()
})
- // 监听购买按钮点击事件
+ // 監聽購買按鈕點擊事件
$('ul.buy-area').on('click', '.buy-btn', function(){
console.log($(this).data());
if (!$(this).data('name') || !$(this).data('day') || !$(this).data('gold') || !$(this).data('giftId')) {
- toastMsg('礼包信息不完整')
+ toastMsg('禮包信息不完整')
return
}
@@ -186,7 +186,7 @@ $(function(){
$('.shade-mask-buy').fadeIn(50)
$('body').css('overflow', 'hidden')
})
- // 关闭购买弹窗
+ // 關閉購買彈窗
$('.buy-confirm-btn .cancel').on('click', function(){
$('.shade-mask-buy').fadeOut(50)
$('body').css('overflow', 'auto')
@@ -198,7 +198,7 @@ $(function(){
$('.shade-content-buy').on('click', function(e){
e.stopPropagation()
})
- // 增加购买数量
+ // 增加購買數量
$('.increase').on('click', function(){
if(giftObj['num']<999){
giftObj['num']++;
@@ -208,10 +208,10 @@ $(function(){
$('.buy-day span').html(giftObj['day'])
$('.buy-price span').html(allPrice)
}else{
- toastMsg('单次购买数量最多为999')
+ toastMsg('單次購買數量最多為999')
}
})
- // 减少购买数量
+ // 減少購買數量
$('.decrease').on('click', function(){
if($('.inputNum').val()>0){
giftObj['num']--;
@@ -221,14 +221,14 @@ $(function(){
$('.buy-day span').html(giftObj['day'])
$('.buy-price span').html(allPrice)
}else{
- toastMsg('最少购买数量为1')
+ toastMsg('最少購買數量為1')
}
})
- // 手动输入购买数量
+ // 手動輸入購買數量
$('.inputNum').on('input', function(){
let exp = /^[0-9]+$/
if (!exp.test($(this).val())) {
- toastMsg('请输入数字')
+ toastMsg('請輸入數字')
return
}
if($(this).val() > 999){
@@ -242,17 +242,17 @@ $(function(){
$('.buy-day span').html(giftObj['day'])
$('.buy-price span').html(allPrice)
})
- // 确认购买
+ // 確認購買
let lock = false
$('.confirm').on('click', function(){
let exp = /^[0-9]+$/
if(!exp.test($('.inputNum').val())){
- toastMsg('请输入数字')
+ toastMsg('請輸入數字')
$('.inputNum').val(1)
return
}
if($('.inputNum').val() == 0){
- return toastMsg('最少购买数量为1')
+ return toastMsg('最少購買數量為1')
}
if(!lock){
lock = true
@@ -270,7 +270,7 @@ $(function(){
getUserInfo(res.data)
$('.shade-mask-buy').hide()
$('.shade').fadeIn(300)
- $('.shade-mask-success .tip').html(`获赠糖果x` + giftObj.ticketNum * giftObj.num)
+ $('.shade-mask-success .tip').html(`獲贈糖果x` + giftObj.ticketNum * giftObj.num)
$('.shade-mask-success').fadeIn()
}else if(res.code === 2103){
$('.shade-mask-buy').hide()
@@ -289,13 +289,13 @@ $(function(){
}
})
- // 关闭购买成功弹窗
+ // 關閉購買成功彈窗
$('.in-btn').on('click', function(){
$('.shade-mask-success').fadeOut()
$('.shade').fadeOut()
$('body').css('overflow', 'auto')
})
- // 跳转充值
+ // 跳轉充值
$('.recharge').on('click', function(){
$('.shade-mask-no-money').fadeOut(300)
$('.shade').fadeOut(300)
@@ -307,11 +307,11 @@ $(function(){
window.webkit.messageHandlers.openChargePage.postMessage(null)
}
}else{
- toastMsg('请在app内打开')
+ toastMsg('請在app內打開')
}
})
- //从充值页面返回活动页面 重新请求用户信息接口
+ //從充值頁面返回活動頁面 重新請求用戶信息接口
var hiddenProperty = 'hidden' in document ? 'hidden' :
'webkitHidden' in document ? 'webkitHidden' :
'mozHidden' in document ? 'mozHidden' : null;
diff --git a/view/peko/modules/share_room/index.html b/view/peko/modules/share_room/index.html
index 3323fdf..ccc1048 100644
--- a/view/peko/modules/share_room/index.html
+++ b/view/peko/modules/share_room/index.html
@@ -59,7 +59,7 @@
-
+