Compare commits
13 Commits
luckTycoon
...
order
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b5862cb683 | ||
![]() |
244f3a6308 | ||
![]() |
c1337fd1de | ||
![]() |
e2fdfd02c3 | ||
![]() |
5824f20a25 | ||
![]() |
ae2f118147 | ||
![]() |
78a5e1d87c | ||
![]() |
de2d8600b2 | ||
![]() |
0d5f7abe96 | ||
![]() |
b9ebf7cbc1 | ||
![]() |
1ee6cfec1d | ||
![]() |
788eec914f | ||
![]() |
3fc9d7f68a |
@@ -838,7 +838,7 @@ function langCodeFun(langCode) {
|
||||
document.documentElement.setAttribute("dir", "rtl");
|
||||
document.body.classList.add('arabic');
|
||||
|
||||
}else if(langCode == "en"){
|
||||
} else if (langCode == "en") {
|
||||
document.body.classList.add('english');
|
||||
}
|
||||
if (window.location.href.match(/guildAr/)) {
|
||||
@@ -1154,4 +1154,154 @@ function rewardTypeFun(type) {
|
||||
} else if (type == "EMPTY") {
|
||||
return { name: nick, unit: '個' };
|
||||
}
|
||||
}
|
||||
function rewardTypeNumFun(num) {
|
||||
if (getQueryString().lang == 'zh') {
|
||||
if (num == 1) {
|
||||
return { name: "金幣", unit: '個' };
|
||||
}
|
||||
else if (num == 2) {
|
||||
return { name: "禮物", unit: '個' };
|
||||
}
|
||||
else if (num == 3) {
|
||||
return { name: "座駕", unit: '天' };
|
||||
}
|
||||
else if (num == 4) {
|
||||
return { name: "頭飾", unit: '天' };
|
||||
}
|
||||
else if (num == 5) {
|
||||
return { name: "背景", unit: '天' };
|
||||
}
|
||||
else if (num == 6) {
|
||||
return { name: "實物", unit: '個' };
|
||||
}
|
||||
else if (num == 7) {
|
||||
return { name: "靚號", unit: '天' };
|
||||
}
|
||||
else if (num == 8) {
|
||||
return { name: "全麥禮物", unit: '個' };
|
||||
}
|
||||
else if (num == 9) {
|
||||
return { name: "隨機靚號", unit: '天' };
|
||||
}
|
||||
else if (num == 10) {
|
||||
return { name: "錘子", unit: '個' };
|
||||
}
|
||||
else if (num == 13) {
|
||||
return { name: "祝福語", unit: '天' };
|
||||
}
|
||||
else if (num == 14) {
|
||||
return { name: "銘牌", unit: '天' };
|
||||
}
|
||||
else if (num == 15) {
|
||||
return { name: "虛擬貨幣", unit: '個' };
|
||||
}
|
||||
else if (num == 16) {
|
||||
return { name: "聊天氣泡", unit: '天' };
|
||||
}
|
||||
else if (num == 17) {
|
||||
return { name: "資料卡", unit: '天' };
|
||||
}
|
||||
else {
|
||||
return { name: "null", unit: 'null' };
|
||||
}
|
||||
} else if (getQueryString().lang == 'en') {
|
||||
if (num == 1) {
|
||||
return { name: "Coins", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 2) {
|
||||
return { name: "Gift", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 3) {
|
||||
return { name: "Vehicle", unit: 'days' };
|
||||
}
|
||||
else if (num == 4) {
|
||||
return { name: "Headgear", unit: 'days' };
|
||||
}
|
||||
else if (num == 5) {
|
||||
return { name: "Background", unit: 'days' };
|
||||
}
|
||||
else if (num == 6) {
|
||||
return { name: "Physical item", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 7) {
|
||||
return { name: "VIP number", unit: 'days' };
|
||||
}
|
||||
else if (num == 8) {
|
||||
return { name: "Whole wheat gift", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 9) {
|
||||
return { name: "Random VIP number", unit: 'days' };
|
||||
}
|
||||
else if (num == 10) {
|
||||
return { name: "Hammer", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 13) {
|
||||
return { name: "Blessing", unit: 'days' };
|
||||
}
|
||||
else if (num == 14) {
|
||||
return { name: "Nameplate", unit: 'days' };
|
||||
}
|
||||
else if (num == 15) {
|
||||
return { name: "Virtual currency", unit: 'pcs' };
|
||||
}
|
||||
else if (num == 16) {
|
||||
return { name: "Chat bubble", unit: 'days' };
|
||||
}
|
||||
else if (num == 17) {
|
||||
return { name: "Profile card", unit: 'days' };
|
||||
}
|
||||
else {
|
||||
return { name: "null", unit: 'null' };
|
||||
}
|
||||
} else {
|
||||
if (num == 1) {
|
||||
return { name: "القطع النقدية", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 2) {
|
||||
return { name: "الهدايا", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 3) {
|
||||
return { name: "المركبة", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 4) {
|
||||
return { name: "القبعة", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 5) {
|
||||
return { name: "الخلفية", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 6) {
|
||||
return { name: "العنصر الفعلي", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 7) {
|
||||
return { name: "الرقم المميز", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 8) {
|
||||
return { name: "الهدايا الكاملة القمح", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 9) {
|
||||
return { name: "رقم عشوائي مميز", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 10) {
|
||||
return { name: "مطرقة", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 13) {
|
||||
return { name: "التبريكات", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 14) {
|
||||
return { name: "لوحة الاسم", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 15) {
|
||||
return { name: "العملة الافتراضية", unit: 'قطعة' };
|
||||
}
|
||||
else if (num == 16) {
|
||||
return { name: "فقاعة الدردشة", unit: 'يوم' };
|
||||
}
|
||||
else if (num == 17) {
|
||||
return { name: "بطاقة الملف الشخصي", unit: 'يوم' };
|
||||
}
|
||||
else {
|
||||
return { name: "null", unit: 'null' };
|
||||
}
|
||||
}
|
||||
}
|
@@ -28,7 +28,8 @@ const toastMsg = (content = langReplace(localLang.demoModule.layerIndex2), time
|
||||
skin: 'msg'
|
||||
})
|
||||
}
|
||||
var times = new Date().getTime() - 86400000;
|
||||
// var times = new Date().getTime() - 86400000;
|
||||
var times = new Date().getTime();
|
||||
var startDates;
|
||||
var endDates;
|
||||
var timestamp;
|
||||
@@ -146,11 +147,13 @@ function memberIncome(startDate, endDate) {
|
||||
}
|
||||
// 查询按钮
|
||||
$('.back .text').click(function () {
|
||||
if ((Date.parse(endDates)) >= timestamp) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text13))
|
||||
} else if (endDates == dateFormat(timestamp, 'yyyy-MM-dd')) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text14))
|
||||
} else if (Date.parse(startDates) > Date.parse(endDates)) {
|
||||
// if ((Date.parse(endDates)) >= timestamp) {
|
||||
// toastMsg(langReplace(localLang.memberFlow.text13))
|
||||
// } else if (endDates == dateFormat(timestamp, 'yyyy-MM-dd')) {
|
||||
// toastMsg(langReplace(localLang.memberFlow.text14))
|
||||
// } else
|
||||
|
||||
if (Date.parse(startDates) > Date.parse(endDates)) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text15))
|
||||
} else if ((Date.parse(endDates) - Date.parse(startDates)) > (30 * 24 * 60 * 60 * 1000)) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text16))
|
||||
|
@@ -28,7 +28,8 @@ const toastMsg = (content = langReplace(localLang.demoModule.layerIndex2), time
|
||||
skin: 'msg'
|
||||
})
|
||||
}
|
||||
var times = new Date().getTime() - 86400000;
|
||||
// var times = new Date().getTime() - 86400000;
|
||||
var times = new Date().getTime();
|
||||
var startDates;
|
||||
var endDates;
|
||||
var timestamp;
|
||||
@@ -151,11 +152,13 @@ $('.timeBox .right .goToExchangeGold').click(function () {
|
||||
})
|
||||
// 查询按钮
|
||||
$('.back .text').click(function () {
|
||||
if ((Date.parse(endDates)) >= timestamp) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text13))
|
||||
} else if (endDates == dateFormat(timestamp, 'yyyy-MM-dd')) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text14))
|
||||
} else if (Date.parse(startDates) > Date.parse(endDates)) {
|
||||
// if ((Date.parse(endDates)) >= timestamp) {
|
||||
// toastMsg(langReplace(localLang.memberFlow.text13))
|
||||
// } else if (endDates == dateFormat(timestamp, 'yyyy-MM-dd')) {
|
||||
// toastMsg(langReplace(localLang.memberFlow.text14))
|
||||
// } else
|
||||
|
||||
if (Date.parse(startDates) > Date.parse(endDates)) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text15))
|
||||
} else if ((Date.parse(endDates) - Date.parse(startDates)) > (30 * 24 * 60 * 60 * 1000)) {
|
||||
toastMsg(langReplace(localLang.memberFlow.text16))
|
||||
|
@@ -76,7 +76,7 @@
|
||||
<script src="./local/ar.js"></script>
|
||||
<script src="./js/mobileSelect.js"></script>
|
||||
<script src="./js/selectDate.js"></script>
|
||||
<script src="./js/memberFlow.js"></script>
|
||||
<script src="./js/memberFlow.js?v=1.0"></script>
|
||||
<script src="../../common/local/langHandler.js"></script>
|
||||
|
||||
</html>
|
@@ -73,7 +73,7 @@
|
||||
<script src="./local/ar.js"></script>
|
||||
<script src="./js/mobileSelect.js"></script>
|
||||
<script src="./js/selectDate.js"></script>
|
||||
<script src="./js/memberFlow2.js"></script>
|
||||
<script src="./js/memberFlow2.js?v=1.0"></script>
|
||||
<script src="../../common/local/langHandler.js"></script>
|
||||
|
||||
</html>
|
@@ -153,7 +153,6 @@ body {
|
||||
}
|
||||
|
||||
.page1 .box1 .megaphone ul li .b {
|
||||
width: 2.1rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
@@ -155,7 +155,6 @@ body {
|
||||
text-align: center;
|
||||
}
|
||||
.b{
|
||||
width: 2.1rem;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
@@ -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>molistar</title><link href=./static/css/app.1c49a76cafa4948223ab6d9713891691.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.605adc25401124a3376c.js></script><script type=text/javascript src=./static/js/vendor.ef63a6e67767f10f7bb6.js></script><script type=text/javascript src=./static/js/app.cface51cfa4b1ea6cea6.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>molistar</title><link href=./static/css/app.5d78398a0b057a8e4ead59c63b5b0637.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.48507909c165798089f7.js></script><script type=text/javascript src=./static/js/vendor.ef63a6e67767f10f7bb6.js></script><script type=text/javascript src=./static/js/app.6b2186f60b68842acea5.js></script></body></html>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,2 +1,2 @@
|
||||
webpackJsonp([12],{CXh3:function(t,n,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var v={created:function(){document.title="領獎說明"},components:{navigation:a("hff3").a}},s={render:function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("div",{staticClass:"wrap"},[this.$store.state.isApp?t._e():a("navigation",{attrs:{title:"領獎說明"}}),t._v(" "),a("div",{staticClass:"part-title nomt"},[t._v("一、領獎綁定說明")]),t._v(" "),a("p",[t._v("\n 1.領獎前請前往app設置支付密碼、實名認證和綁定支付寶。\n ")]),t._v(" "),a("p",[t._v("\n 2.綁定時務必確保所填信息有效,填寫資料錯誤導致的提現失敗損失將由用戶自行承擔。\n ")]),t._v(" "),a("p",[t._v("\n 3.修改支付寶賬號時,暫不支持對賬號主體(即真實姓名和身份證號)進行修改。\n ")]),t._v(" "),a("div",{staticClass:"part-title"},[t._v("二、領獎規則")]),t._v(" "),a("p",[t._v("\n 1.用戶賬戶內可領獎金額大於等於10元時,可申請領獎,每次領獎按聽獎金額的6.5%收取交易手續費。\n ")]),t._v(" "),a("p",[t._v("\n 2.用戶隨時可申請提現,每周可提現5次,提交申請後審核及到賬時間為1個工作日內,具體到賬時間以綁定的支付寶賬號的到賬時間為準。\n ")]),t._v(" "),a("div",{staticClass:"part-title"},[t._v("三、領獎審核不通過的原因")]),t._v(" "),t._m(0),t._v(" "),a("p",[t._v("\n 2.如平臺檢測到用戶的molistar賬戶有作弊或異常狀況,平臺將拒絕該用戶對收益進行提現。\n ")]),t._v(" "),a("p",[t._v("3.如對領獎金額有疑問,可聯系在線客服並提供相關信息進行查詢。")]),t._v(" "),a("p",[t._v("\n 4.molistar有權依據國家政策、技術條件、產品功能等變化需要而對本說明進行修改並將修改後的說明予以發布,並對具體獎金發放規則及《領獎說明》擁有最終解釋權。\n ")])],1)},staticRenderFns:[function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("div",[a("p",[t._v("1.支付寶賬號未完成實名認證或開啟了隱私保護功能。")]),t._v(" "),a("p",{staticClass:"a"},[t._v("解決辦法:")]),t._v(" "),a("p",{staticClass:"b"},[t._v("(1)完成支付寶收款賬號實名認證")]),t._v(" "),a("p",{staticClass:"b c"},[t._v("(2)前往支付寶→我的→設置→開啟【通過手機號找到我】")]),t._v(" "),a("p",{staticClass:"b"},[t._v("(3)完成上述操作後,可重新進行領獎申請")])])}]};var e=a("VU/8")(v,s,!1,function(t){a("T94n")},"data-v-5bdeda0f",null);n.default=e.exports},T94n:function(t,n){}});
|
||||
//# sourceMappingURL=12.b16a14104ab77a57b8a2.js.map
|
||||
webpackJsonp([11],{CXh3:function(t,n,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var v={created:function(){document.title="領獎說明"},components:{navigation:a("hff3").a}},s={render:function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("div",{staticClass:"wrap"},[this.$store.state.isApp?t._e():a("navigation",{attrs:{title:"領獎說明"}}),t._v(" "),a("div",{staticClass:"part-title nomt"},[t._v("一、領獎綁定說明")]),t._v(" "),a("p",[t._v("\n 1.領獎前請前往app設置支付密碼、實名認證和綁定支付寶。\n ")]),t._v(" "),a("p",[t._v("\n 2.綁定時務必確保所填信息有效,填寫資料錯誤導致的提現失敗損失將由用戶自行承擔。\n ")]),t._v(" "),a("p",[t._v("\n 3.修改支付寶賬號時,暫不支持對賬號主體(即真實姓名和身份證號)進行修改。\n ")]),t._v(" "),a("div",{staticClass:"part-title"},[t._v("二、領獎規則")]),t._v(" "),a("p",[t._v("\n 1.用戶賬戶內可領獎金額大於等於10元時,可申請領獎,每次領獎按聽獎金額的6.5%收取交易手續費。\n ")]),t._v(" "),a("p",[t._v("\n 2.用戶隨時可申請提現,每周可提現5次,提交申請後審核及到賬時間為1個工作日內,具體到賬時間以綁定的支付寶賬號的到賬時間為準。\n ")]),t._v(" "),a("div",{staticClass:"part-title"},[t._v("三、領獎審核不通過的原因")]),t._v(" "),t._m(0),t._v(" "),a("p",[t._v("\n 2.如平臺檢測到用戶的molistar賬戶有作弊或異常狀況,平臺將拒絕該用戶對收益進行提現。\n ")]),t._v(" "),a("p",[t._v("3.如對領獎金額有疑問,可聯系在線客服並提供相關信息進行查詢。")]),t._v(" "),a("p",[t._v("\n 4.molistar有權依據國家政策、技術條件、產品功能等變化需要而對本說明進行修改並將修改後的說明予以發布,並對具體獎金發放規則及《領獎說明》擁有最終解釋權。\n ")])],1)},staticRenderFns:[function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("div",[a("p",[t._v("1.支付寶賬號未完成實名認證或開啟了隱私保護功能。")]),t._v(" "),a("p",{staticClass:"a"},[t._v("解決辦法:")]),t._v(" "),a("p",{staticClass:"b"},[t._v("(1)完成支付寶收款賬號實名認證")]),t._v(" "),a("p",{staticClass:"b c"},[t._v("(2)前往支付寶→我的→設置→開啟【通過手機號找到我】")]),t._v(" "),a("p",{staticClass:"b"},[t._v("(3)完成上述操作後,可重新進行領獎申請")])])}]};var e=a("VU/8")(v,s,!1,function(t){a("T94n")},"data-v-5bdeda0f",null);n.default=e.exports},T94n:function(t,n){}});
|
||||
//# sourceMappingURL=11.a5e798e367bdaa3003e9.js.map
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,2 +1,2 @@
|
||||
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,a){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 c)Object.prototype.hasOwnProperty.call(c,f)&&(e[f]=c[f]);for(n&&n(r,c,a);s.length;)s.shift()();if(a)for(d=0;d<a.length;d++)u=o(o.s=a[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],a=document.createElement("script");a.type="text/javascript",a.charset="utf-8",a.async=!0,a.timeout=12e4,o.nc&&a.setAttribute("nonce",o.nc),a.src=o.p+"static/js/"+e+"."+{0:"9b42e162ef90c3d92a52",1:"c2ef46c6dcac24931ba4",2:"17debe0f6011a97521e8",3:"a4c2cd2893242b26adcb",4:"1c8935faedda18361064",5:"37b2f2b115d86f904080",6:"0e7ac399b5d59483b7f2",7:"770781e704ff5805cd00",8:"4218eb5becaddd649623",9:"d02156509389fc441584",10:"8520f094936f10a3326e",11:"43caf672575e03e95c26",12:"b16a14104ab77a57b8a2"}[e]+".js";var f=setTimeout(i,12e4);function i(){a.onerror=a.onload=null,clearTimeout(f);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return a.onerror=a.onload=i,c.appendChild(a),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.605adc25401124a3376c.js.map
|
||||
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,a){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 c)Object.prototype.hasOwnProperty.call(c,f)&&(e[f]=c[f]);for(n&&n(r,c,a);s.length;)s.shift()();if(a)for(d=0;d<a.length;d++)u=o(o.s=a[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],a=document.createElement("script");a.type="text/javascript",a.charset="utf-8",a.async=!0,a.timeout=12e4,o.nc&&a.setAttribute("nonce",o.nc),a.src=o.p+"static/js/"+e+"."+{0:"9b42e162ef90c3d92a52",1:"c2ef46c6dcac24931ba4",2:"17debe0f6011a97521e8",3:"a4c2cd2893242b26adcb",4:"1c8935faedda18361064",5:"58042bd52f2cd081476b",6:"0e7ac399b5d59483b7f2",7:"770781e704ff5805cd00",8:"4218eb5becaddd649623",9:"d02156509389fc441584",10:"8520f094936f10a3326e",11:"a5e798e367bdaa3003e9",12:"76315556388cef14bf10"}[e]+".js";var f=setTimeout(i,12e4);function i(){a.onerror=a.onload=null,clearTimeout(f);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return a.onerror=a.onload=i,c.appendChild(a),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.48507909c165798089f7.js.map
|
160
view/molistar/modules/order/css/index.css
Normal file
160
view/molistar/modules/order/css/index.css
Normal file
@@ -0,0 +1,160 @@
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: 21.65333rem;
|
||||
background: #19100F;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
html::-webkit-scrollbar,
|
||||
body::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.back {
|
||||
width: 100%;
|
||||
height: 0.58667rem;
|
||||
line-height: 0.58667rem;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0.86667rem;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
font-size: 0.50667rem;
|
||||
font-weight: bold;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.back img {
|
||||
width: 0.58667rem;
|
||||
height: 0.58667rem;
|
||||
position: absolute;
|
||||
left: 0.24rem;
|
||||
top: 0rem;
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 9.98667rem;
|
||||
height: 8.08rem;
|
||||
background: url(../images/header.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
ul {
|
||||
width: 9.38667rem;
|
||||
position: relative;
|
||||
margin: -0.4rem auto 0;
|
||||
}
|
||||
|
||||
ul li {
|
||||
width: 9.38667rem;
|
||||
height: 3.70667rem;
|
||||
background: url(../images/liBg.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
position: relative;
|
||||
margin-bottom: 0.32rem;
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
ul li .name {
|
||||
width: 4.28rem;
|
||||
height: 0.53333rem;
|
||||
position: absolute;
|
||||
right: 3.81333rem;
|
||||
top: 0.61333rem;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: bold;
|
||||
font-size: 0.58667rem;
|
||||
color: #FACF50;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
ul li .id {
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
font-size: 0.42667rem;
|
||||
right: 3.77333rem;
|
||||
top: 1.28rem;
|
||||
}
|
||||
|
||||
ul li .gameName1 {
|
||||
position: absolute;
|
||||
right: 3.8rem;
|
||||
top: 2.14667rem;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: 0.26667rem;
|
||||
}
|
||||
|
||||
ul li .gameName1 b {
|
||||
color: #fff;
|
||||
font-size: 0.32rem;
|
||||
}
|
||||
|
||||
ul li .gameName2 {
|
||||
position: absolute;
|
||||
right: 6.53333rem;
|
||||
top: 2.14667rem;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: 0.26667rem;
|
||||
}
|
||||
|
||||
ul li .gameName2 b {
|
||||
color: #fff;
|
||||
font-size: 0.32rem;
|
||||
}
|
||||
|
||||
ul li .gameGrade1 {
|
||||
position: absolute;
|
||||
right: 3.8rem;
|
||||
top: 2.86667rem;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: 0.26667rem;
|
||||
}
|
||||
|
||||
ul li .gameGrade1 b {
|
||||
color: #fff;
|
||||
font-size: 0.32rem;
|
||||
}
|
||||
|
||||
ul li .gameGrade2 {
|
||||
position: absolute;
|
||||
right: 6.53333rem;
|
||||
top: 2.86667rem;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: 0.26667rem;
|
||||
}
|
||||
|
||||
ul li .gameGrade2 b {
|
||||
color: #fff;
|
||||
font-size: 0.32rem;
|
||||
}
|
||||
|
||||
ul li .txBg,
|
||||
ul li .tx {
|
||||
width: 3.41333rem;
|
||||
height: 3.6rem;
|
||||
position: absolute;
|
||||
right: 0.06667rem;
|
||||
top: 0.04867rem;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
ul li .tx {
|
||||
z-index: 1;
|
||||
border-top-left-radius: 0.26667rem;
|
||||
border-top-right-radius: 0.26667rem;
|
||||
border-bottom-right-radius: 0.26667rem;
|
||||
}
|
170
view/molistar/modules/order/css/index.scss
Normal file
170
view/molistar/modules/order/css/index.scss
Normal file
@@ -0,0 +1,170 @@
|
||||
@function px2rem($px) {
|
||||
@return $px / 75+rem;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: px2rem(1624);
|
||||
background: #19100F;
|
||||
overflow-y: scroll;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.back {
|
||||
width: 100%;
|
||||
height: px2rem(44);
|
||||
line-height: px2rem(44);
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: px2rem(65);
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
font-size: px2rem(38);
|
||||
font-weight: bold;
|
||||
z-index: 10;
|
||||
|
||||
img {
|
||||
width: px2rem(44);
|
||||
height: px2rem(44);
|
||||
position: absolute;
|
||||
left: px2rem(18);
|
||||
top: px2rem(0);
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
width: px2rem(749);
|
||||
height: px2rem(606);
|
||||
background: url(../images/header.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
ul {
|
||||
width: px2rem(704);
|
||||
// height: px2rem(1052);
|
||||
// height: 13.9rem;
|
||||
position: relative;
|
||||
margin: px2rem(-30) auto 0;
|
||||
// overflow-y: scroll;
|
||||
|
||||
// &::-webkit-scrollbar {
|
||||
// display: none;
|
||||
// }
|
||||
|
||||
li {
|
||||
width: px2rem(704);
|
||||
height: px2rem(278);
|
||||
background: url(../images/liBg.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
position: relative;
|
||||
margin-bottom: px2rem(24);
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
|
||||
.name {
|
||||
width: px2rem(321);
|
||||
height: px2rem(40);
|
||||
position: absolute;
|
||||
right: px2rem(286);
|
||||
top: px2rem(46);
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: bold;
|
||||
font-size: px2rem(44);
|
||||
color: #FACF50;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.id {
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
font-size: px2rem(32);
|
||||
right: px2rem(283);
|
||||
top: px2rem(96);
|
||||
}
|
||||
|
||||
.gameName1 {
|
||||
position: absolute;
|
||||
right: px2rem(285);
|
||||
top: px2rem(161);
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: px2rem(20);
|
||||
|
||||
b {
|
||||
color: #fff;
|
||||
font-size: px2rem(24);
|
||||
}
|
||||
}
|
||||
|
||||
.gameName2 {
|
||||
position: absolute;
|
||||
right: px2rem(490);
|
||||
top: px2rem(161);
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: px2rem(20);
|
||||
|
||||
b {
|
||||
color: #fff;
|
||||
font-size: px2rem(24);
|
||||
}
|
||||
}
|
||||
|
||||
.gameGrade1 {
|
||||
position: absolute;
|
||||
right: px2rem(285);
|
||||
top: px2rem(215);
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: px2rem(20);
|
||||
|
||||
b {
|
||||
color: #fff;
|
||||
font-size: px2rem(24);
|
||||
}
|
||||
}
|
||||
|
||||
.gameGrade2 {
|
||||
position: absolute;
|
||||
right: px2rem(490);
|
||||
top: px2rem(215);
|
||||
color: #fff;
|
||||
opacity: .6;
|
||||
color: #CDCDCD;
|
||||
font-size: px2rem(20);
|
||||
|
||||
b {
|
||||
color: #fff;
|
||||
font-size: px2rem(24);
|
||||
}
|
||||
}
|
||||
|
||||
.txBg,
|
||||
.tx {
|
||||
width: px2rem(256);
|
||||
height: px2rem(270);
|
||||
position: absolute;
|
||||
right: px2rem(5);
|
||||
top: px2rem(3.65);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.tx {
|
||||
z-index: 1;
|
||||
border-top-left-radius: px2rem(20);
|
||||
border-top-right-radius: px2rem(20);
|
||||
border-bottom-right-radius: px2rem(20);
|
||||
}
|
||||
}
|
||||
}
|
BIN
view/molistar/modules/order/images/header.png
Normal file
BIN
view/molistar/modules/order/images/header.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 633 KiB |
BIN
view/molistar/modules/order/images/liBg.png
Normal file
BIN
view/molistar/modules/order/images/liBg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 109 KiB |
BIN
view/molistar/modules/order/images/logo.png
Normal file
BIN
view/molistar/modules/order/images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
view/molistar/modules/order/images/travel/back.png
Normal file
BIN
view/molistar/modules/order/images/travel/back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
view/molistar/modules/order/images/travel/backB.png
Normal file
BIN
view/molistar/modules/order/images/travel/backB.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
BIN
view/molistar/modules/order/images/txBg.png
Normal file
BIN
view/molistar/modules/order/images/txBg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
39
view/molistar/modules/order/index.html
Normal file
39
view/molistar/modules/order/index.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<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="header"></div>
|
||||
<ul>
|
||||
<!-- <li>
|
||||
<div class="name">用户昵称</div>
|
||||
<div class="id">0:ID</div>
|
||||
<div class="gameName1"><b>吃鸡</b> :اسم اللعبة </div>
|
||||
<div class="gameGrade1"><b>高</b> :مهارة</div>
|
||||
<div class="gameName2"><b>吃鸡</b> :اسم اللعبة</div>
|
||||
<div class="gameGrade2"><b>高</b> :مهارة</div>
|
||||
<img src="./images/txBg.png" alt="" class="txBg">
|
||||
<img src="./images/logo.png" alt="" class="tx">
|
||||
</li> -->
|
||||
</ul>
|
||||
</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="../../common/js/route-constant.js"></script>
|
||||
<script src="./js/index.js"></script>
|
130
view/molistar/modules/order/js/index.js
Normal file
130
view/molistar/modules/order/js/index.js
Normal file
@@ -0,0 +1,130 @@
|
||||
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'
|
||||
})
|
||||
}
|
||||
var page = 1;
|
||||
var isLock = true;
|
||||
// 初始化函數
|
||||
$(function () {
|
||||
getInfoFromClient();
|
||||
setTimeout(function () {
|
||||
// 頁面全屏
|
||||
if (browser.app) {
|
||||
if (browser.android) {
|
||||
window.androidJsObj.initShowNav(false)
|
||||
} else {
|
||||
window.webkit.messageHandlers.initShowNav.postMessage(0)
|
||||
}
|
||||
};
|
||||
// 頂部返回事件
|
||||
$('.back img').click(() => {
|
||||
if (browser.android) {
|
||||
window.androidJsObj.closeWebView()
|
||||
} else {
|
||||
window.webkit.messageHandlers.closeWebView.postMessage(null)
|
||||
}
|
||||
})
|
||||
$('ul li').remove();
|
||||
getRecords();
|
||||
}, 100)
|
||||
})
|
||||
function getRecords() {
|
||||
showLoading()
|
||||
networkRequest({
|
||||
type: 'get',
|
||||
url: urlPrefix + '/gamePartnerInfo/pagePartner',
|
||||
data: {
|
||||
page,
|
||||
pageSize: 10,
|
||||
},
|
||||
success(res) {
|
||||
if (res.code === 200) {
|
||||
var str = '';
|
||||
if (res.data.rows.length == 0) {
|
||||
isLock = false;
|
||||
} else {
|
||||
res.data.rows.forEach(res => {
|
||||
str += `
|
||||
<li>
|
||||
<div class="name">${res.nick}</div>
|
||||
<div class="id">${res.erbanNo}:ID</div>
|
||||
${strFun(res.gamePartnerInfoList)}
|
||||
<img uid=${res.uid} src="./images/txBg.png" alt="" class="txBg">
|
||||
<img src="${res.avatar}" alt="" class="tx">
|
||||
</li>
|
||||
`
|
||||
});
|
||||
isLock = true;
|
||||
$('ul').append(str)
|
||||
}
|
||||
} else {
|
||||
toastMsg(res.message)
|
||||
}
|
||||
hideLoading(layerIndex)
|
||||
},
|
||||
error(err) {
|
||||
isLock = true;
|
||||
hideLoading(layerIndex)
|
||||
toastMsg("خطأ في الشبكة")
|
||||
}
|
||||
})
|
||||
}
|
||||
$('ul').on('click', ' li .txBg', function () {
|
||||
var uid = $(this).attr('uid');
|
||||
if (!browser.app) return
|
||||
if (browser.ios) {
|
||||
window.webkit.messageHandlers.openPersonPage.postMessage(uid);
|
||||
} else if (browser.android) {
|
||||
if (androidJsObj && typeof androidJsObj === 'object') {
|
||||
window.androidJsObj.openPersonPage(uid);
|
||||
}
|
||||
}
|
||||
})
|
||||
function strFun(data) {
|
||||
var str = ''
|
||||
data.forEach((res, i) => {
|
||||
str += `
|
||||
<div class="gameName${i + 1}"><b>${res.gameName}</b> :اسم اللعبة </div>
|
||||
<div class="gameGrade${i + 1}">الكفاءة : <b>${res.proficiency}</b></div>
|
||||
`
|
||||
})
|
||||
return str;
|
||||
}
|
||||
// 實力滾動監聽
|
||||
$('body').scroll(function () {
|
||||
let scrollTop = $(this).scrollTop()
|
||||
let scrollHeight = $('body')[0].scrollHeight
|
||||
let ulHeight = $(this).innerHeight()
|
||||
if (scrollTop + ulHeight + 100 >= scrollHeight) {
|
||||
if (isLock) {
|
||||
// 請求下一頁
|
||||
page = page + 1;
|
||||
getRecords()
|
||||
isLock = false;
|
||||
}
|
||||
}
|
||||
})
|
@@ -1,5 +1,6 @@
|
||||
const ar = {
|
||||
diamondLog: {
|
||||
遊戲開黑支出: 'الرهانات الرياضية',
|
||||
LUDO匹配收入: 'دخل مباراة لودو',
|
||||
LUDO匹配退還: 'استرداد مباراة لودو',
|
||||
LUDO匹配消耗: 'نفقات مباراة لودو',
|
||||
@@ -147,6 +148,7 @@ const ar = {
|
||||
// 鉆石開通貴族:'تفعيل النبلاء',
|
||||
// }
|
||||
goldLog: {
|
||||
遊戲開黑收入: 'الاستلام الألعاب',
|
||||
鉆石記錄: 'سجل الماس',
|
||||
收入記錄: 'سجل الدخل',
|
||||
支出記錄: 'سجل المصروفات',
|
||||
|
@@ -1,5 +1,6 @@
|
||||
const en = {
|
||||
diamondLog: {
|
||||
遊戲開黑支出: 'sports betting',
|
||||
LUDO匹配收入: 'LUDO Match Income',
|
||||
LUDO匹配退還: 'LUDO Match Refund',
|
||||
LUDO匹配消耗: 'LUDO Match Expenditure',
|
||||
@@ -138,6 +139,7 @@ const en = {
|
||||
// 鉆石開通貴族:'Diamond Open Noble',
|
||||
// }
|
||||
goldLog: {
|
||||
遊戲開黑收入: 'game orders',
|
||||
鉆石記錄: 'Diamond Record',
|
||||
收入記錄: 'Income Record',
|
||||
支出記錄: 'Expenditure Record',
|
||||
|
@@ -1,5 +1,6 @@
|
||||
const zh = {
|
||||
diamondLog: {
|
||||
遊戲開黑支出: '遊戲下單',
|
||||
LUDO匹配收入: 'LUDO匹配收入',
|
||||
LUDO匹配退還: 'LUDO匹配退還',
|
||||
LUDO匹配消耗: 'LUDO匹配消耗',
|
||||
@@ -150,6 +151,7 @@ const zh = {
|
||||
// 鉆石開通貴族:'鉆石開通貴族',
|
||||
// }
|
||||
goldLog: {
|
||||
遊戲開黑收入: '遊戲接單',
|
||||
鉆石記錄: '鉆石記錄',
|
||||
收入記錄: '收入記錄',
|
||||
支出記錄: '支出記錄',
|
||||
|
@@ -236,6 +236,9 @@
|
||||
<p v-else-if="tab === 12 && item1.objType === 112">
|
||||
{{ $t("diamondLog.購買頭條消耗") }}
|
||||
</p>
|
||||
<p v-else-if="tab === 12 && item1.objType === 117">
|
||||
{{ $t("diamondLog.遊戲開黑支出") }}
|
||||
</p>
|
||||
<p v-else-if="tab === 12 && item1.objType === 90">
|
||||
{{ $t("diamondLog.轉贈金幣給") }} {{ item1.targetNick.length > 7 ? item1.targetNick.slice(0, 7) + '...' : item1.targetNick }}
|
||||
{{ item1.sendDiamondAmount }}{{ $t("diamondLog.金幣") }}
|
||||
|
@@ -76,6 +76,7 @@
|
||||
<div v-if="tableType == 15 && item1.objType == 29">{{$t(`goldLog.活動贈送金幣`)}}</div>
|
||||
<div v-if="tableType == 15 && item1.objType == 93">{{$t(`goldLog.公會金幣結算收入`)}}</div>
|
||||
<div v-if="tableType == 15 && item1.objType == 107">{{$t(`goldLog.超級幸運禮物價值分成`)}}</div>
|
||||
<div v-if="tableType == 15 && item1.objType == 116">{{$t(`goldLog.遊戲開黑收入`)}}</div>
|
||||
<!-- <div v-if="tableType == 15 && item1.objType == 1">{{$t(`goldLog.充值`)}}</div>
|
||||
<div v-if="tableType == 15 && item1.objType == 13">{{$t(`goldLog.水晶兌換鉆石收入`)}}</div>
|
||||
<div v-if="tableType == 15 && item1.objType == 15">{{$t(`goldLog.鉆石兌換金幣收入`)}}</div>
|
||||
|
Reference in New Issue
Block a user