@ -5,7 +5,7 @@ |
|||||
</navigation> |
</navigation> |
||||
<view class="prore_body"> |
<view class="prore_body"> |
||||
</view> |
</view> |
||||
<view class="noRes" v-show="test==0"> |
<view class="noRes" v-if="test==0"> |
||||
<view class="imgcon"> |
<view class="imgcon"> |
||||
<image src="../../../../static/promo/[email protected]" mode="aspectFit"></image> |
<image src="../../../../static/promo/[email protected]" mode="aspectFit"></image> |
||||
</view> |
</view> |
||||
@ -19,7 +19,7 @@ |
|||||
<view class="num"> |
<view class="num"> |
||||
<view class="rec"> |
<view class="rec"> |
||||
<view class="Nop1"> |
<view class="Nop1"> |
||||
No.{{item.orderNo}} |
{{item.orderNo}} |
||||
</view> |
</view> |
||||
<view class="Nop2"> |
<view class="Nop2"> |
||||
{{item.addTime}} |
{{item.addTime}} |
||||
@ -30,11 +30,11 @@ |
|||||
</view> |
</view> |
||||
<view class="time"> |
<view class="time"> |
||||
<view class="money"> |
<view class="money"> |
||||
+{{item.tranAmt}} |
{{item.tranAmt}} |
||||
</view> |
</view> |
||||
<view class="nickname"> |
<!-- <view class="nickname"> |
||||
Complete |
Complete |
||||
</view> |
</view> --> |
||||
|
|
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
@ -60,33 +60,35 @@ |
|||||
|
|
||||
this.getBounsRecord(); |
this.getBounsRecord(); |
||||
|
|
||||
|
}, |
||||
|
onReachBottom() { |
||||
|
this.pageSize += 3; |
||||
|
if(this.pageSize>this.totalElements){ |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
this.getBounsRecord(); |
||||
|
|
||||
}, |
}, |
||||
methods:{ |
methods:{ |
||||
qiehuan(i){ |
|
||||
this.qie=i; |
|
||||
this.level=i+1; |
|
||||
this.getBounsRecord(); |
|
||||
}, |
|
||||
getBounsRecord(){ |
getBounsRecord(){ |
||||
const post = api.bonusOutRecords({ |
const post = api.bonusOutRecords({ |
||||
"ticket": uni.getStorageSync('logInfo').data, |
"ticket": uni.getStorageSync('logInfo').data, |
||||
"level":this.level, |
|
||||
"pageNumber": 1, |
"pageNumber": 1, |
||||
"pageSize": this.pageSize, |
"pageSize": this.pageSize, |
||||
}) |
}) |
||||
post.then(res => { |
post.then(res => { |
||||
this.totalElements=res.data.totalElements; |
if(res.data.content.length!=undefined||res.data.content.length!=0){ |
||||
if(res.data.content){ |
this.totalElements=res.data.totalElements; |
||||
this.promotionRecord=res.data.content; |
this.promotionRecord=res.data.content; |
||||
for(var i=0;i<this.promotionRecord.length;i++){ |
for(var i=0;i<this.promotionRecord.length;i++){ |
||||
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime); |
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime); |
||||
|
this.promotionRecord[i].tranAmt=parseFloat(this.promotionRecord[i].tranAmt).toFixed(2) |
||||
} |
} |
||||
this.test=this.promotionRecord.length; |
this.test=this.promotionRecord.length; |
||||
console.log(res.data) |
|
||||
}else{ |
|
||||
console.log(123123) |
|
||||
} |
} |
||||
}) |
}) |
||||
.catch(e => { |
.catch(e => { |
||||
|
@ -5,14 +5,14 @@ |
|||||
</navigation> |
</navigation> |
||||
<view class="prore_body"> |
<view class="prore_body"> |
||||
<view class="prore_lev"> |
<view class="prore_lev"> |
||||
<view class="level" v-for="(item,index) in levelCon" :key="item.id" @click="qiehuan(index)" :class="index==qie?'on':''"> |
<view class="level" v-for="(item,index) in levelCon" :key="item.id" @click="qiehuan(item.id,index)" :class="index==qie?'on':''"> |
||||
{{item.text}} |
{{item.text}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
|
|
||||
|
|
||||
</view> |
</view> |
||||
<view class="noRes" v-show="test==0"> |
<view class="noRes" v-if="test==0"> |
||||
<view class="imgcon"> |
<view class="imgcon"> |
||||
<image src="../../../../static/promo/[email protected]" mode="aspectFit"></image> |
<image src="../../../../static/promo/[email protected]" mode="aspectFit"></image> |
||||
</view> |
</view> |
||||
@ -26,7 +26,7 @@ |
|||||
<view class="num"> |
<view class="num"> |
||||
<view class="rec"> |
<view class="rec"> |
||||
<view class="Nop1"> |
<view class="Nop1"> |
||||
No.60003274 |
{{currencySymbol}}{{item.witAmount}} |
||||
</view> |
</view> |
||||
<view class="Nop2"> |
<view class="Nop2"> |
||||
{{item.addTime}} |
{{item.addTime}} |
||||
@ -37,7 +37,7 @@ |
|||||
</view> |
</view> |
||||
<view class="time"> |
<view class="time"> |
||||
<view class="money"> |
<view class="money"> |
||||
+{{item.amount}} |
{{currencySymbol}}{{item.amount}} |
||||
</view> |
</view> |
||||
<view class="nickname"> |
<view class="nickname"> |
||||
{{item.nickname}} |
{{item.nickname}} |
||||
@ -58,11 +58,12 @@ |
|||||
export default{ |
export default{ |
||||
data(){ |
data(){ |
||||
return{ |
return{ |
||||
|
currencySymbol:'', |
||||
test:0, |
test:0, |
||||
promotionRecord:[], |
promotionRecord:[], |
||||
qie:0, |
qie:0, |
||||
level:1, |
level:1, |
||||
pageSize:3, |
pageSize:10, |
||||
totalElements:'', |
totalElements:'', |
||||
levelCon:[ |
levelCon:[ |
||||
{ |
{ |
||||
@ -73,12 +74,16 @@ |
|||||
id:2, |
id:2, |
||||
text:'level2' |
text:'level2' |
||||
}, |
}, |
||||
|
{ |
||||
|
id:3, |
||||
|
text:'level3' |
||||
|
}, |
||||
], |
], |
||||
} |
} |
||||
}, |
}, |
||||
|
|
||||
onLoad() { |
onLoad() { |
||||
|
this.currencySymbol=uni.getStorageSync('siteInfo').currencySymbol; |
||||
this.getBounsRecord(); |
this.getBounsRecord(); |
||||
|
|
||||
|
|
||||
@ -94,19 +99,14 @@ |
|||||
|
|
||||
}, |
}, |
||||
methods:{ |
methods:{ |
||||
qiehuan(i){ |
qiehuan(i,index){ |
||||
this.qie=i; |
this.qie=index; |
||||
this.level=i+1; |
this.level=i; |
||||
this.getBounsRecord(); |
this.getBounsRecord(); |
||||
}, |
}, |
||||
getBounsRecord(){ |
getBounsRecord(){ |
||||
|
|
||||
|
this.promotionRecord=[]; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
const post = api.bonusRecords({ |
const post = api.bonusRecords({ |
||||
"ticket": uni.getStorageSync('logInfo').data, |
"ticket": uni.getStorageSync('logInfo').data, |
||||
@ -120,11 +120,13 @@ |
|||||
this.promotionRecord=res.data.content; |
this.promotionRecord=res.data.content; |
||||
for(var i=0;i<this.promotionRecord.length;i++){ |
for(var i=0;i<this.promotionRecord.length;i++){ |
||||
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime); |
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime); |
||||
|
this.promotionRecord[i].witAmount=parseFloat(this.promotionRecord[i].witAmount).toFixed(2) |
||||
|
this.promotionRecord[i].amount=parseFloat(this.promotionRecord[i].amount).toFixed(2) |
||||
} |
} |
||||
this.test=this.promotionRecord.length; |
this.test=this.promotionRecord.length; |
||||
console.log(res.data) |
console.log(res.data) |
||||
}else{ |
}else{ |
||||
console.log(123123) |
|
||||
} |
} |
||||
}) |
}) |
||||
.catch(e => { |
.catch(e => { |
||||
|
@ -13,6 +13,38 @@ |
|||||
placeholder-style="color: #BFC2CCFF;font-size:14px;" v-model="mobile" |
placeholder-style="color: #BFC2CCFF;font-size:14px;" v-model="mobile" |
||||
@input="btnControl" /> |
@input="btnControl" /> |
||||
</view> |
</view> |
||||
|
<view class="input-item flex"> |
||||
|
<view class="login-sigh login-sigh2 flex"> |
||||
|
<view class="imgcon"> |
||||
|
<image src="../../static/login/[email protected]" mode=""></image> |
||||
|
</view> |
||||
|
</view> |
||||
|
<input class="input_pcod" value="" placeholder="Picture Code" |
||||
|
placeholder-style="color: #BFC2CC;font-size:14px;" v-model="picCode" /> |
||||
|
<view class="login-sigh3 flex"> |
||||
|
<image :src="imgcodeUrl" mode="scaleToFill" class="img1"></image> |
||||
|
<image src="../../static/login/[email protected]" mode="" class="img2" @click="getPicCode()"> |
||||
|
</image> |
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
<view class="input-item flex"> |
||||
|
<view class="login-sigh login-sigh2 flex"> |
||||
|
<view class="imgcon"> |
||||
|
<image src="../../static/login/[email protected]" mode=""></image> |
||||
|
</view> |
||||
|
</view> |
||||
|
<input value="" placeholder="Verification code" |
||||
|
placeholder-style="color: #BFC2CCFF;font-size:14px;" |
||||
|
v-model="infoCode" /> |
||||
|
<view class="wrap"> |
||||
|
<u-toast ref="uToast"></u-toast> |
||||
|
<u-verification-code :seconds="seconds" ref="uCode" @change="codeChange" |
||||
|
start-text="OTP" change-text="xs" end-text="OTP"></u-verification-code> |
||||
|
<u-button @tap="getCode" style="color: #954DE3FF; border-radius: 4px;font-size: 15px;width: 20px; height: 24px;line-height: 40px;">{{tips}}</u-button> |
||||
|
|
||||
|
</view> |
||||
|
</view> |
||||
<view class="input-item flex"> |
<view class="input-item flex"> |
||||
<view class="login-sigh login-sigh2 flex"> |
<view class="login-sigh login-sigh2 flex"> |
||||
<view class="imgcon"> |
<view class="imgcon"> |
||||
@ -65,7 +97,7 @@ |
|||||
return { |
return { |
||||
tips: 'OTP', |
tips: 'OTP', |
||||
|
|
||||
seconds: 10, |
seconds: 60, |
||||
mobile: '', |
mobile: '', |
||||
mark: 'sms_user_register', |
mark: 'sms_user_register', |
||||
countryCode: '', |
countryCode: '', |
||||
@ -83,15 +115,39 @@ |
|||||
}, |
}, |
||||
|
|
||||
onLoad(invite) { |
onLoad(invite) { |
||||
|
|
||||
this.inviteCode=invite.inviteCode |
this.inviteCode=invite.inviteCode |
||||
this.getPicCode(); |
this.getPicCode(); |
||||
this.areacode = uni.getStorageSync('siteInfo').areaCode; |
this.getInfo(); |
||||
|
|
||||
|
|
||||
}, |
}, |
||||
methods: { |
methods: { |
||||
|
getInfo(){ |
||||
|
const post2 = api.siteInfo({}) |
||||
|
post2.then(res => { |
||||
|
this.areacode=res.data.areaCode |
||||
|
|
||||
|
uni.setStorage({ |
||||
|
key: 'siteInfo', |
||||
|
data: res.data, |
||||
|
success: function() { |
||||
|
} |
||||
|
}); |
||||
|
}) |
||||
|
.catch(e => { |
||||
|
uni.showToast({ |
||||
|
title: e, |
||||
|
icon: 'none', |
||||
|
duration: 2500 |
||||
|
}) |
||||
|
}) |
||||
|
}, |
||||
codeChange(text) { |
codeChange(text) { |
||||
this.tips = text; |
this.tips = text; |
||||
}, |
}, |
||||
getCode() { |
getCode() { |
||||
|
|
||||
if (this.picCode == '') { |
if (this.picCode == '') { |
||||
uni.showToast({ |
uni.showToast({ |
||||
title: 'The graphic verification code is empty', |
title: 'The graphic verification code is empty', |
||||
@ -108,15 +164,7 @@ |
|||||
}) |
}) |
||||
return; |
return; |
||||
} |
} |
||||
var a = /^[0-9]{9}$/; |
|
||||
if (!a.test(this.mobile)) { |
|
||||
uni.showToast({ |
|
||||
title: 'Wrong format of mobile phone number', |
|
||||
icon: 'none', |
|
||||
duration: 1500 |
|
||||
}) |
|
||||
return; |
|
||||
} |
|
||||
if (this.$refs.uCode.canGetCode) { |
if (this.$refs.uCode.canGetCode) { |
||||
// 模拟向后端请求验证码 |
// 模拟向后端请求验证码 |
||||
uni.showLoading({ |
uni.showLoading({ |
||||
@ -141,6 +189,7 @@ |
|||||
icon: 'none', |
icon: 'none', |
||||
duration: 2500 |
duration: 2500 |
||||
}) |
}) |
||||
|
this.getPicCode() |
||||
}) |
}) |
||||
.catch(e => { |
.catch(e => { |
||||
uni.showToast({ |
uni.showToast({ |
||||
@ -148,6 +197,7 @@ |
|||||
icon: 'none', |
icon: 'none', |
||||
duration: 2500 |
duration: 2500 |
||||
}) |
}) |
||||
|
this.getPicCode() |
||||
}) |
}) |
||||
} else { |
} else { |
||||
this.$u.toast('Send after the countdown'); |
this.$u.toast('Send after the countdown'); |
||||
@ -170,9 +220,8 @@ |
|||||
}, |
}, |
||||
|
|
||||
getPicCode() { |
getPicCode() { |
||||
this.imgcodeUrl = "/start/api/home/imgCode?uuid=" + this.$u.guid(20); |
this.imgcodeUrl = "https://api.wingold6.com/api/home/imgCode?uuid=" + this.$u.guid(20); |
||||
console.log(); |
|
||||
console.log(this.imgcodeUrl) |
|
||||
}, |
}, |
||||
|
|
||||
regist() { |
regist() { |
||||
@ -184,36 +233,36 @@ |
|||||
}) |
}) |
||||
return; |
return; |
||||
} |
} |
||||
var a = /^[0-9]{4,14}$/; |
|
||||
if (!a.test(this.mobile)) { |
// var a = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{5,19}$/; |
||||
uni.showToast({ |
// if (!a.test(this.password)) { |
||||
title: 'Wrong format of mobile phone number', |
// uni.showToast({ |
||||
icon: 'none', |
// title: 'Incorrect password format,a password requires a combination of numbers and letters', |
||||
duration: 1500 |
// icon: 'none', |
||||
}) |
// duration: 1500 |
||||
return; |
// }) |
||||
} |
// return; |
||||
var a = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{5,19}$/; |
// } |
||||
if (!a.test(this.password)) { |
// if (this.password.length < 6 || this.password.length > 20) { |
||||
uni.showToast({ |
// uni.showToast({ |
||||
title: 'Incorrect password format,a password requires a combination of numbers and letters', |
// title: 'The login password requires 6-20 digits', |
||||
icon: 'none', |
// icon: 'none', |
||||
duration: 1500 |
// duration: 1500 |
||||
}) |
// }) |
||||
return; |
// return; |
||||
} |
// } |
||||
if (this.password.length < 6 || this.password.length > 20) { |
|
||||
|
if (this.inviteCode == '') { |
||||
uni.showToast({ |
uni.showToast({ |
||||
title: 'The login password requires 6-20 digits', |
title: 'inviteCode Code is empty', |
||||
icon: 'none', |
icon: 'none', |
||||
duration: 1500 |
duration: 1500 |
||||
}) |
}) |
||||
return; |
return; |
||||
} |
} |
||||
|
if (this.infoCode == '') { |
||||
if (this.inviteCode == '') { |
|
||||
uni.showToast({ |
uni.showToast({ |
||||
title: 'inviteCode Code is empty', |
title: 'Verification code is empty', |
||||
icon: 'none', |
icon: 'none', |
||||
duration: 1500 |
duration: 1500 |
||||
}) |
}) |
||||
|
@ -1 +0,0 @@ |
|||||
https://service.dcloud.net.cn/build/download/2e81c670-1169-11ec-8f72-fb2a1f12c767 |
|
@ -1,3 +0,0 @@ |
|||||
andrCertfile=D:/zwf88z |
|
||||
andrCertAlias=zwf88z |
|
||||
andrCertPass=zYkNtsJvQswSIoDx0UnmWw== |
|
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 2.0 KiB |
@ -1,25 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<html lang="zh-CN"> |
|
||||
|
|
||||
<head> |
|
||||
<meta charset="UTF-8" /> |
|
||||
<script> |
|
||||
var __UniViewStartTime__ = Date.now(); |
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || |
|
||||
CSS.supports('top: constant(a)')) |
|
||||
document.write( |
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + |
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />') |
|
||||
</script> |
|
||||
<title>View</title> |
|
||||
<link rel="stylesheet" href="view.css" /> |
|
||||
</head> |
|
||||
|
|
||||
<body> |
|
||||
<div id="app"></div> |
|
||||
<script src="__uniappes6.js"></script> |
|
||||
<script src="view.umd.min.js"></script> |
|
||||
<script src="app-view.js"></script> |
|
||||
</body> |
|
||||
|
|
||||
</html> |
|
@ -1,8 +0,0 @@ |
|||||
|
|
||||
var isReady=false;var onReadyCallbacks=[]; |
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[]; |
|
||||
var __uniConfig = {"pages":["pages/login/index","pages/redenvelopes","pages/menu/re/list/index","pages/menu/re/add/index","pages/menu/address/index","pages/menu/order/index","pages/menu/about/RiskDisclosureAGREEMENT","pages/menu/about/privacyPolicy","pages/menu/search/index","pages/menu/goods/index","pages/menu/goods/goodsDetail/index","pages/menu/address/addAddress/index","pages/menu/bankCard/addBankCard/index","pages/menu/bankCard/index","pages/register/index","pages/menu/color/index","pages/menu/colorMoni/index","pages/menu/promotion/applyRecord/index","pages/menu/promotion/bounsRecord/index","pages/menu/withdrawl/transactions/index","pages/menu/recharge/rechargeRule","pages/menu/withdrawl/transactions/index","pages/menu/withdrawl/withdrawlRecord/index","pages/menu/recharge/index","pages/menu/recharge/record/index","pages/menu/rule/arules/index","pages/menu/aplan/index","pages/menu/withdrawl/index","pages/menu/promotion/promotionRecord/index","pages/menu/recharge/index","pages/menu/My/index","pages/menu/promotion/index","pages/menu/index/index","pages/login/resetPassword/index","pages/menu/rule/index","pages/menu/rule/inviteRule/index"],"window":{"navigationBarTextStyle":"white","navigationBarBackgroundColor":"#34026B","style":{"app-plus":{"titleNView":false}}},"tabBar":{"selectedColor":"#34026B","list":[{"text":"Home","pagePath":"pages/menu/goods/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"Search","pagePath":"pages/menu/search/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"Order","pagePath":"pages/menu/order/index","iconPath":"./static/tabbar/dorder.png","selectedIconPath":"./static/tabbar/dorderS.png"},{"text":"Promotion","pagePath":"pages/menu/promotion/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"My","pagePath":"pages/menu/My/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"}]},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"Win Gold","compilerVersion":"3.1.18","entryPagePath":"pages/login/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; |
|
||||
var __uniRoutes = [{"path":"/pages/login/index","meta":{"isQuit":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/redenvelopes","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/re/list/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/re/add/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/address/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/order/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/about/RiskDisclosureAGREEMENT","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/about/privacyPolicy","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/search/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/goods/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/goods/goodsDetail/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/address/addAddress/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/bankCard/addBankCard/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/bankCard/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/register/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/color/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/colorMoni/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/promotion/applyRecord/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/promotion/bounsRecord/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/withdrawl/transactions/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/recharge/rechargeRule","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/withdrawl/withdrawlRecord/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/recharge/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/recharge/record/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/rule/arules/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/aplan/index","meta":{},"window":{}},{"path":"/pages/menu/withdrawl/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/promotion/promotionRecord/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/My/index","meta":{"isQuit":true,"isTabBar":true},"window":{}},{"path":"/pages/menu/promotion/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/index/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/login/resetPassword/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/rule/index","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/menu/rule/inviteRule/index","meta":{},"window":{"navigationStyle":"custom"}}]; |
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}}); |
|
@ -1 +0,0 @@ |
|||||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]); |
|
@ -1 +0,0 @@ |
|||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__7E21D6D","name":"Win Gold","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#34026B"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","proapp@2x":"unpackage/res/icons/167x167.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png"},"prerendered":"false"}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"uni.UNI7E21D6D","password":"zYkNtsJvQswSIoDx0UnmWw==","aliasname":"zwf88z","keystore":"google-keystore","custompermissions":true},"apple":{"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":["portrait-primary"],"splashscreen":{}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.1.18","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"selectedColor":"#34026B","list":[{"text":"Home","pagePath":"pages/menu/goods/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"Search","pagePath":"pages/menu/search/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"Order","pagePath":"pages/menu/order/index","iconPath":"./static/tabbar/dorder.png","selectedIconPath":"./static/tabbar/dorderS.png"},{"text":"Promotion","pagePath":"pages/menu/promotion/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"},{"text":"My","pagePath":"pages/menu/My/index","iconPath":"./static/tabbar/[email protected]","selectedIconPath":"./static/tabbar/[email protected]"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px"},"launch_path":"__uniappview.html","adid":"127964190008"}} |
|
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 424 B |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 530 B |
Before Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 535 B |
Before Width: | Height: | Size: 881 B |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 253 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 905 B |
Before Width: | Height: | Size: 565 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 698 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 810 B |
Before Width: | Height: | Size: 221 B |