正在显示
36 个修改的文件
包含
240 行增加
和
136 行删除
@@ -17,9 +17,10 @@ | @@ -17,9 +17,10 @@ | ||
17 | }, | 17 | }, |
18 | /* 模块配置 */ | 18 | /* 模块配置 */ |
19 | "modules" : { | 19 | "modules" : { |
20 | - "FaceID" : {}, | ||
21 | "Payment" : {}, | 20 | "Payment" : {}, |
22 | - "Maps" : {} | 21 | + "Maps" : {}, |
22 | + "OAuth" : {}, | ||
23 | + "FaceID" : {} | ||
23 | }, | 24 | }, |
24 | /* 应用发布信息 */ | 25 | /* 应用发布信息 */ |
25 | "distribute" : { | 26 | "distribute" : { |
@@ -70,7 +71,13 @@ | @@ -70,7 +71,13 @@ | ||
70 | "appkey_android" : "01d25fb8343d7ce5040bc32cb3e5379f" | 71 | "appkey_android" : "01d25fb8343d7ce5040bc32cb3e5379f" |
71 | } | 72 | } |
72 | }, | 73 | }, |
73 | - "oauth" : {} | 74 | + "oauth" : { |
75 | + "weixin" : { | ||
76 | + "appid" : "wx24f90adc1d2f4f3d", | ||
77 | + "appsecret" : "e1da139286ef1335fdd36029a2ac7fb5", | ||
78 | + "UniversalLinks" : "" | ||
79 | + } | ||
80 | + } | ||
74 | } | 81 | } |
75 | }, | 82 | }, |
76 | "nativePlugins" : { | 83 | "nativePlugins" : { |
1 | { | 1 | { |
2 | "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages | 2 | "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages |
3 | + | ||
4 | + { | ||
5 | + "path": "pages/login/loginindex", | ||
6 | + "style": { | ||
7 | + "navigationBarTitleText": "", | ||
8 | + "navigationBarBackgroundColor": "#fff", | ||
9 | + "navigationBarTextStyle": "black" | ||
10 | + } | ||
11 | + }, | ||
12 | + | ||
3 | { | 13 | { |
4 | "path": "pages/homepage/homepage", | 14 | "path": "pages/homepage/homepage", |
5 | "style": { | 15 | "style": { |
@@ -39,14 +49,6 @@ | @@ -39,14 +49,6 @@ | ||
39 | } | 49 | } |
40 | }, | 50 | }, |
41 | 51 | ||
42 | - { | ||
43 | - "path": "pages/login/loginindex", | ||
44 | - "style": { | ||
45 | - "navigationBarTitleText": "", | ||
46 | - "navigationBarBackgroundColor": "#fff", | ||
47 | - "navigationBarTextStyle": "black" | ||
48 | - } | ||
49 | - }, | ||
50 | 52 | ||
51 | 53 | ||
52 | { | 54 | { |
@@ -136,15 +136,16 @@ | @@ -136,15 +136,16 @@ | ||
136 | </view> | 136 | </view> |
137 | </view> | 137 | </view> |
138 | <!-- 签到--> | 138 | <!-- 签到--> |
139 | - <view class="register" v-if="jifenshow"> | 139 | + <view class="register" v-if="is_sign==2"> |
140 | <view class="jiimgbox"> | 140 | <view class="jiimgbox"> |
141 | <view class="jiimg"> | 141 | <view class="jiimg"> |
142 | <image src="../../static/ji.png" mode=""></image> | 142 | <image src="../../static/ji.png" mode=""></image> |
143 | <view class="jitext"> | 143 | <view class="jitext"> |
144 | - <view class="jiname">+{{qiandaoinfo.score}}积分</view> | 144 | + <view class="jiname">+{{qiandaoinfo.rule.score}}积分</view> |
145 | <view class="qian">每日签到</view> | 145 | <view class="qian">每日签到</view> |
146 | - <view class="lianxu lianqianday">{{qiandaoinfo.title}}</view> | ||
147 | - <view class="lianxu">明天签到可获得10积分</view> | 146 | + <view class="lianxu lianqianday">{{qiandaoinfo.rule.title}}</view> |
147 | + <!-- <view class="lianxu">明天签到可获得10积分</view> --> | ||
148 | + <view class="lianxu">{{qiandaoinfo.rule2.title}}</view> | ||
148 | </view> | 149 | </view> |
149 | <view class="chahao" @click="hidejifen"> | 150 | <view class="chahao" @click="hidejifen"> |
150 | <image src="../../static/chahao.png" mode=""></image> | 151 | <image src="../../static/chahao.png" mode=""></image> |
@@ -205,7 +206,8 @@ | @@ -205,7 +206,8 @@ | ||
205 | provincename: '', | 206 | provincename: '', |
206 | currentTabIndex: 0, | 207 | currentTabIndex: 0, |
207 | datamianfang:false, | 208 | datamianfang:false, |
208 | - qiandaoinfo:'' | 209 | + qiandaoinfo:'', |
210 | + is_sign:'' | ||
209 | } | 211 | } |
210 | }, | 212 | }, |
211 | onLoad() { | 213 | onLoad() { |
@@ -235,11 +237,14 @@ | @@ -235,11 +237,14 @@ | ||
235 | console.log(params) | 237 | console.log(params) |
236 | app.post(url, params).then((res) => { | 238 | app.post(url, params).then((res) => { |
237 | console.log('获取签到信息',res); | 239 | console.log('获取签到信息',res); |
238 | - that.qiandaoinfo=res.data.data | 240 | + that.qiandaoinfo=res.data.data; |
241 | + that.is_sign=res.data.data.user.is_sign; | ||
242 | + that.qiandao() | ||
239 | 243 | ||
240 | }).catch((err) => { | 244 | }).catch((err) => { |
241 | 245 | ||
242 | }) | 246 | }) |
247 | + | ||
243 | }, | 248 | }, |
244 | // 签到 | 249 | // 签到 |
245 | qiandao() { | 250 | qiandao() { |
@@ -420,7 +425,7 @@ | @@ -420,7 +425,7 @@ | ||
420 | this.showbanben = false | 425 | this.showbanben = false |
421 | }, | 426 | }, |
422 | hidejifen() { | 427 | hidejifen() { |
423 | - this.jifenshow = false | 428 | + this.is_sign = 1 |
424 | }, | 429 | }, |
425 | // 面坊用品 | 430 | // 面坊用品 |
426 | mianfang() { | 431 | mianfang() { |
@@ -33,18 +33,18 @@ | @@ -33,18 +33,18 @@ | ||
33 | 33 | ||
34 | <view class="phonecode" @click="loginindex">短信验证码登录</view> | 34 | <view class="phonecode" @click="loginindex">短信验证码登录</view> |
35 | <view class="title">快捷登录</view> | 35 | <view class="title">快捷登录</view> |
36 | - <view class='btnbottom'> | 36 | + <view class='btnbottom' @click="wxlogin"> |
37 | <view class="btnimgwei"> | 37 | <view class="btnimgwei"> |
38 | <image src="../../static/weixin.png" mode=""></image> | 38 | <image src="../../static/weixin.png" mode=""></image> |
39 | </view> | 39 | </view> |
40 | 微信登录 | 40 | 微信登录 |
41 | </view> | 41 | </view> |
42 | - <view class='btnbottom'> | 42 | + <!-- <view class='btnbottom'> |
43 | <view class="btnimgwei"> | 43 | <view class="btnimgwei"> |
44 | <image src="../../static/zhifubao.png" mode=""></image> | 44 | <image src="../../static/zhifubao.png" mode=""></image> |
45 | </view> | 45 | </view> |
46 | 支付宝登录 | 46 | 支付宝登录 |
47 | - </view> | 47 | + </view> --> |
48 | </view> | 48 | </view> |
49 | <view class="password flexthree"> | 49 | <view class="password flexthree"> |
50 | <view class="passwordleft" @click="forgetmima">忘记密码?</view> | 50 | <view class="passwordleft" @click="forgetmima">忘记密码?</view> |
@@ -128,7 +128,8 @@ | @@ -128,7 +128,8 @@ | ||
128 | var params = { | 128 | var params = { |
129 | mobile:that.phone, | 129 | mobile:that.phone, |
130 | password:that.code, | 130 | password:that.code, |
131 | - third_id:'' | 131 | + third_id: uni.getStorageSync("third_id")==undefined?'' |
132 | + : uni.getStorageSync("third_id") | ||
132 | } | 133 | } |
133 | console.log('1222',params) | 134 | console.log('1222',params) |
134 | app.post(url, params,"post").then((res) => { | 135 | app.post(url, params,"post").then((res) => { |
@@ -140,18 +141,8 @@ | @@ -140,18 +141,8 @@ | ||
140 | uni.setStorageSync("token",res.data.data.token); | 141 | uni.setStorageSync("token",res.data.data.token); |
141 | setTimeout(function() { | 142 | setTimeout(function() { |
142 | uni.switchTab({ | 143 | uni.switchTab({ |
143 | - | ||
144 | url:'/pages/homepage/homepage' | 144 | url:'/pages/homepage/homepage' |
145 | }) | 145 | }) |
146 | - // if(that.type==1){ | ||
147 | - // let url=uni.getStorageSync("url"); | ||
148 | - // uni.redirectTo({ | ||
149 | - // url:url | ||
150 | - // }) | ||
151 | - // }else{ | ||
152 | - | ||
153 | - // } | ||
154 | - | ||
155 | }, 1500); | 146 | }, 1500); |
156 | }).catch((err) => { | 147 | }).catch((err) => { |
157 | console.log(err) | 148 | console.log(err) |
@@ -163,6 +154,65 @@ | @@ -163,6 +154,65 @@ | ||
163 | }) | 154 | }) |
164 | }) | 155 | }) |
165 | }, | 156 | }, |
157 | + | ||
158 | + // 微信登录 | ||
159 | + wxlogin() { | ||
160 | + let that = this; | ||
161 | + uni.login({ | ||
162 | + provider: 'weixin', | ||
163 | + success: function(loginRes) { | ||
164 | + console.log(loginRes.authResult); | ||
165 | + // 获取用户信息 | ||
166 | + uni.getUserInfo({ | ||
167 | + provider: 'weixin', | ||
168 | + success: function(infoRes) { | ||
169 | + console.log(infoRes) | ||
170 | + console.log('用户昵称为:' + infoRes.userInfo.nickName); | ||
171 | + | ||
172 | + var url = 'user/wechat_login'; | ||
173 | + var params = { | ||
174 | + nickname:infoRes.userInfo.nickName, | ||
175 | + avatar:infoRes.userInfo.avatarUrl, | ||
176 | + openid:infoRes.userInfo.openId, | ||
177 | + gender:infoRes.userInfo.gender, | ||
178 | + city:infoRes.userInfo.city, | ||
179 | + province:infoRes.userInfo.province, | ||
180 | + country:infoRes.userInfo.country, | ||
181 | + more:JSON.stringify(infoRes.userInfo) | ||
182 | + } | ||
183 | + console.log('参数', params) | ||
184 | + app.post(url, params, "post").then((res) => { | ||
185 | + console.log(res); | ||
186 | + uni.setStorageSync("third_id",res.data.data.third_id) | ||
187 | + if(res.data.data.token==undefined){ | ||
188 | + uni.navigateTo({ | ||
189 | + url:'/pages/login/register' | ||
190 | + }) | ||
191 | + }else{ | ||
192 | + uni.showToast({ | ||
193 | + title:'登录成功', | ||
194 | + icon:'none' | ||
195 | + }) | ||
196 | + uni.setStorageSync("token",res.data.data.token) | ||
197 | + | ||
198 | + setTimeout(function(){ | ||
199 | + uni.switchTab({ | ||
200 | + url:"/pages/homepage/homepage" | ||
201 | + }) | ||
202 | + },1500) | ||
203 | + } | ||
204 | + | ||
205 | + | ||
206 | + }).catch((err) => { | ||
207 | + console.log(err) | ||
208 | + | ||
209 | + }) | ||
210 | + | ||
211 | + } | ||
212 | + }); | ||
213 | + } | ||
214 | + }); | ||
215 | + }, | ||
166 | // 短信验证码登录 | 216 | // 短信验证码登录 |
167 | loginindex(){ | 217 | loginindex(){ |
168 | uni.navigateTo({ | 218 | uni.navigateTo({ |
@@ -73,7 +73,9 @@ | @@ -73,7 +73,9 @@ | ||
73 | mobile: that.phone, | 73 | mobile: that.phone, |
74 | password:that.firscode, | 74 | password:that.firscode, |
75 | affirm_password:that.secondcode, | 75 | affirm_password:that.secondcode, |
76 | - third_id:'' | 76 | + third_id: uni.getStorageSync("third_id")==undefined?'' |
77 | +: uni.getStorageSync("third_id") , | ||
78 | + | ||
77 | }; | 79 | }; |
78 | console.log('8888', param) | 80 | console.log('8888', param) |
79 | app.post(url, param, 'get').then(r => { | 81 | app.post(url, param, 'get').then(r => { |
@@ -32,12 +32,12 @@ | @@ -32,12 +32,12 @@ | ||
32 | 32 | ||
33 | <view class="phonecode" @click="phonenumber">手机号密码登录</view> | 33 | <view class="phonecode" @click="phonenumber">手机号密码登录</view> |
34 | <view class="title">快捷登录</view> | 34 | <view class="title">快捷登录</view> |
35 | - <!-- <view class='btnbottom' @click="wxlogin"> | 35 | + <view class='btnbottom' @click="wxlogin"> |
36 | <view class="btnimgwei"> | 36 | <view class="btnimgwei"> |
37 | <image src="../../static/weixin.png" mode=""></image> | 37 | <image src="../../static/weixin.png" mode=""></image> |
38 | </view> | 38 | </view> |
39 | 微信登录 | 39 | 微信登录 |
40 | - </view> --> | 40 | + </view> |
41 | <!-- <view class='btnbottom'> | 41 | <!-- <view class='btnbottom'> |
42 | <view class="btnimgwei"> | 42 | <view class="btnimgwei"> |
43 | <image src="../../static/zhifubao.png" mode=""></image> | 43 | <image src="../../static/zhifubao.png" mode=""></image> |
@@ -89,8 +89,8 @@ | @@ -89,8 +89,8 @@ | ||
89 | phone: '', | 89 | phone: '', |
90 | code: '', | 90 | code: '', |
91 | setcode: '', | 91 | setcode: '', |
92 | - type:'', | ||
93 | - | 92 | + type: '', |
93 | + | ||
94 | } | 94 | } |
95 | }, | 95 | }, |
96 | methods: { | 96 | methods: { |
@@ -135,7 +135,7 @@ | @@ -135,7 +135,7 @@ | ||
135 | app.post(url, param, 'get').then(r => { | 135 | app.post(url, param, 'get').then(r => { |
136 | console.log(r) | 136 | console.log(r) |
137 | that.setcode = r.data.data.code; | 137 | that.setcode = r.data.data.code; |
138 | - that.code=r.data.data.code; | 138 | + that.code = r.data.data.code; |
139 | interval = setInterval(function() { | 139 | interval = setInterval(function() { |
140 | currentTime--; | 140 | currentTime--; |
141 | that.time = currentTime + '秒'; | 141 | that.time = currentTime + '秒'; |
@@ -151,7 +151,7 @@ | @@ -151,7 +151,7 @@ | ||
151 | 151 | ||
152 | }).catch(err => { | 152 | }).catch(err => { |
153 | console.log(err); | 153 | console.log(err); |
154 | - | 154 | + |
155 | }) | 155 | }) |
156 | }, | 156 | }, |
157 | 157 | ||
@@ -180,7 +180,7 @@ | @@ -180,7 +180,7 @@ | ||
180 | }) | 180 | }) |
181 | return false | 181 | return false |
182 | } | 182 | } |
183 | - if (that.code !='') { | 183 | + if (that.code != '') { |
184 | // that.istestcode() | 184 | // that.istestcode() |
185 | // uni.showToast({ | 185 | // uni.showToast({ |
186 | // title: '请输入正确的验证码', | 186 | // title: '请输入正确的验证码', |
@@ -188,38 +188,39 @@ | @@ -188,38 +188,39 @@ | ||
188 | // }) | 188 | // }) |
189 | // return false | 189 | // return false |
190 | } | 190 | } |
191 | + console.log('38983948934894389', uni.getStorageSync("third_id")) | ||
191 | var url = 'user/login2'; | 192 | var url = 'user/login2'; |
192 | var params = { | 193 | var params = { |
193 | mobile: that.phone, | 194 | mobile: that.phone, |
194 | code: that.code, | 195 | code: that.code, |
195 | - third_id: '' | 196 | + third_id: uni.getStorageSync("third_id") == undefined ? '' : uni.getStorageSync("third_id") |
196 | } | 197 | } |
197 | - console.log('1222', params) | 198 | + console.log('347834734793493498',params) |
198 | app.post(url, params, "post").then((res) => { | 199 | app.post(url, params, "post").then((res) => { |
199 | console.log(res, '37443'); | 200 | console.log(res, '37443'); |
200 | uni.showToast({ | 201 | uni.showToast({ |
201 | title: '录成功', | 202 | title: '录成功', |
202 | icon: 'none' | 203 | icon: 'none' |
203 | }) | 204 | }) |
204 | - uni.setStorageSync("token",res.data.data.token); | ||
205 | - | 205 | + uni.setStorageSync("token", res.data.data.token); |
206 | + | ||
206 | clearInterval(interval); | 207 | clearInterval(interval); |
207 | - | 208 | + |
208 | setTimeout(function() { | 209 | setTimeout(function() { |
209 | uni.switchTab({ | 210 | uni.switchTab({ |
210 | - url:'/pages/homepage/homepage' | 211 | + url: '/pages/homepage/homepage' |
211 | }) | 212 | }) |
212 | // if(that.type==1){ | 213 | // if(that.type==1){ |
213 | // let url=uni.getStorageSync("url"); | 214 | // let url=uni.getStorageSync("url"); |
214 | // console.log('我是url',url) | 215 | // console.log('我是url',url) |
215 | // uni.navigateTo({ | 216 | // uni.navigateTo({ |
216 | - | 217 | + |
217 | // url:url | 218 | // url:url |
218 | // }) | 219 | // }) |
219 | // }else{ | 220 | // }else{ |
220 | - | 221 | + |
221 | // } | 222 | // } |
222 | - | 223 | + |
223 | }, 1500); | 224 | }, 1500); |
224 | }).catch((err) => { | 225 | }).catch((err) => { |
225 | console.log(err) | 226 | console.log(err) |
@@ -227,7 +228,7 @@ | @@ -227,7 +228,7 @@ | ||
227 | title: err.msg, | 228 | title: err.msg, |
228 | icon: 'none' | 229 | icon: 'none' |
229 | }) | 230 | }) |
230 | - | 231 | + |
231 | clearInterval(interval); | 232 | clearInterval(interval); |
232 | that.time = '发送验证码'; | 233 | that.time = '发送验证码'; |
233 | that.currentTime = 61; | 234 | that.currentTime = 61; |
@@ -240,17 +241,17 @@ | @@ -240,17 +241,17 @@ | ||
240 | // var params = { | 241 | // var params = { |
241 | // mobile:that.phone, | 242 | // mobile:that.phone, |
242 | // code:that.code | 243 | // code:that.code |
243 | - | 244 | + |
244 | // } | 245 | // } |
245 | // app.post(url, params).then((res) => { | 246 | // app.post(url, params).then((res) => { |
246 | // console.log(res); | 247 | // console.log(res); |
247 | - | 248 | + |
248 | // }).catch((err) => { | 249 | // }).catch((err) => { |
249 | // console.log('888',err) | 250 | // console.log('888',err) |
250 | // uni.showToast({ | 251 | // uni.showToast({ |
251 | - | 252 | + |
252 | // }) | 253 | // }) |
253 | - | 254 | + |
254 | // }) | 255 | // }) |
255 | // }, | 256 | // }, |
256 | // 注册 | 257 | // 注册 |
@@ -261,7 +262,7 @@ | @@ -261,7 +262,7 @@ | ||
261 | }, | 262 | }, |
262 | phonenumber() { | 263 | phonenumber() { |
263 | uni.navigateTo({ | 264 | uni.navigateTo({ |
264 | - url: '/pages/login/accountpassword?type='+this.type | 265 | + url: '/pages/login/accountpassword?type=' + this.type |
265 | }) | 266 | }) |
266 | }, | 267 | }, |
267 | 268 | ||
@@ -299,37 +300,47 @@ | @@ -299,37 +300,47 @@ | ||
299 | success: function(infoRes) { | 300 | success: function(infoRes) { |
300 | console.log(infoRes) | 301 | console.log(infoRes) |
301 | console.log('用户昵称为:' + infoRes.userInfo.nickName); | 302 | console.log('用户昵称为:' + infoRes.userInfo.nickName); |
302 | - | 303 | + |
303 | var url = 'user/wechat_login'; | 304 | var url = 'user/wechat_login'; |
304 | var params = { | 305 | var params = { |
305 | - nickname:infoRes.userInfo.nickName, | ||
306 | - avatar:infoRes.userInfo.avatarUrl, | ||
307 | - openid:infoRes.userInfo.openId, | ||
308 | - gender:infoRes.userInfo.gender, | ||
309 | - city:infoRes.userInfo.city, | ||
310 | - province:infoRes.userInfo.province, | ||
311 | - country:infoRes.userInfo.country, | ||
312 | - more:JSON.stringify(infoRes.userInfo) | 306 | + nickname: infoRes.userInfo.nickName, |
307 | + avatar: infoRes.userInfo.avatarUrl, | ||
308 | + openid: infoRes.userInfo.openId, | ||
309 | + gender: infoRes.userInfo.gender, | ||
310 | + city: infoRes.userInfo.city, | ||
311 | + province: infoRes.userInfo.province, | ||
312 | + country: infoRes.userInfo.country, | ||
313 | + more: JSON.stringify(infoRes.userInfo) | ||
313 | } | 314 | } |
315 | + | ||
314 | console.log('参数', params) | 316 | console.log('参数', params) |
315 | app.post(url, params, "post").then((res) => { | 317 | app.post(url, params, "post").then((res) => { |
316 | console.log(res); | 318 | console.log(res); |
317 | - uni.showToast({ | ||
318 | - title:'登录成功', | ||
319 | - iocn:'none' | ||
320 | - }) | ||
321 | - setTimeout(function(){ | ||
322 | - uni.redirectTo({ | ||
323 | - | ||
324 | - url:"/pages/homepage/homepage" | 319 | + uni.setStorageSync("third_id", res.data.data.third_id) |
320 | + if (res.data.data.token == undefined) { | ||
321 | + uni.navigateTo({ | ||
322 | + url: '/pages/login/register' | ||
323 | + }) | ||
324 | + } else { | ||
325 | + uni.showToast({ | ||
326 | + title: '登录成功', | ||
327 | + icon: 'none' | ||
325 | }) | 328 | }) |
326 | - },1500) | ||
327 | - | 329 | + uni.setStorageSync("token", res.data.data.token) |
330 | + | ||
331 | + setTimeout(function() { | ||
332 | + uni.switchTab({ | ||
333 | + url: "/pages/homepage/homepage" | ||
334 | + }) | ||
335 | + }, 1500) | ||
336 | + } | ||
337 | + | ||
338 | + | ||
328 | }).catch((err) => { | 339 | }).catch((err) => { |
329 | console.log(err) | 340 | console.log(err) |
330 | - | 341 | + |
331 | }) | 342 | }) |
332 | - | 343 | + |
333 | } | 344 | } |
334 | }); | 345 | }); |
335 | } | 346 | } |
@@ -348,8 +359,8 @@ | @@ -348,8 +359,8 @@ | ||
348 | console.log('App Hide,app不再展现在前台') | 359 | console.log('App Hide,app不再展现在前台') |
349 | }, | 360 | }, |
350 | onLoad(options) { | 361 | onLoad(options) { |
351 | - this.type=options.type; | ||
352 | - | 362 | + this.type = options.type; |
363 | + | ||
353 | 364 | ||
354 | }, | 365 | }, |
355 | onReachBottom() { | 366 | onReachBottom() { |
@@ -364,7 +375,7 @@ | @@ -364,7 +375,7 @@ | ||
364 | page { | 375 | page { |
365 | overflow-y: hidden; | 376 | overflow-y: hidden; |
366 | } | 377 | } |
367 | - | 378 | + |
368 | 379 | ||
369 | .loginbtn { | 380 | .loginbtn { |
370 | margin-top: 62rpx; | 381 | margin-top: 62rpx; |
@@ -21,11 +21,11 @@ | @@ -21,11 +21,11 @@ | ||
21 | onLoad(options) { | 21 | onLoad(options) { |
22 | this.score=options.score | 22 | this.score=options.score |
23 | 23 | ||
24 | - | ||
25 | }, | 24 | }, |
26 | methods: { | 25 | methods: { |
27 | backluntan(){ | 26 | backluntan(){ |
28 | - uni.navigateTo({ | 27 | + uni.switchTab({ |
28 | + | ||
29 | url:'/pages/luntan/luntan' | 29 | url:'/pages/luntan/luntan' |
30 | }) | 30 | }) |
31 | }, | 31 | }, |
@@ -26,7 +26,7 @@ | @@ -26,7 +26,7 @@ | ||
26 | <view class="flex"> | 26 | <view class="flex"> |
27 | <view class="textitemleft" > | 27 | <view class="textitemleft" > |
28 | <image src="../../static/selright.png" mode="" v-if="item.answer==1&&item.chose==true"></image> | 28 | <image src="../../static/selright.png" mode="" v-if="item.answer==1&&item.chose==true"></image> |
29 | - <image src="../../static/wrong.png" mode="" v-else-if="item.answer==2&&item.chose==true"></image> | 29 | + <image src="../../static/slewrong.png" mode="" v-else-if="item.answer==2&&item.chose==true"></image> |
30 | <image src="../../static/meisel.png" mode="" v-else></image> | 30 | <image src="../../static/meisel.png" mode="" v-else></image> |
31 | </view> | 31 | </view> |
32 | <view class="textitemright"> | 32 | <view class="textitemright"> |
@@ -345,8 +345,8 @@ | @@ -345,8 +345,8 @@ | ||
345 | } | 345 | } |
346 | 346 | ||
347 | .wrongimg { | 347 | .wrongimg { |
348 | - width: 28rpx; | ||
349 | - height: 28rpx; | 348 | + width: 30rpx; |
349 | + height: 30rpx; | ||
350 | font-size: 0; | 350 | font-size: 0; |
351 | } | 351 | } |
352 | 352 |
@@ -98,33 +98,31 @@ | @@ -98,33 +98,31 @@ | ||
98 | </view> | 98 | </view> |
99 | <view class="tapnav flextwo"> | 99 | <view class="tapnav flextwo"> |
100 | <view class="tapnavitem " :class="selnav==1?'tapnavactive':''" @click="navtap" :data-id="1">详情</view> | 100 | <view class="tapnavitem " :class="selnav==1?'tapnavactive':''" @click="navtap" :data-id="1">详情</view> |
101 | - <view class="tapnavitem" :class="selnav==2?'tapnavactive':''" @click="navtap" :data-id="2">评论(200)</view> | 101 | + <view class="tapnavitem" :class="selnav==2?'tapnavactive':''" @click="navtap" :data-id="2">评论({{total}})</view> |
102 | </view> | 102 | </view> |
103 | - | ||
104 | <view class="goodetailbox" v-if="selnav==1"> | 103 | <view class="goodetailbox" v-if="selnav==1"> |
105 | <rich-text :nodes="goodtail.content"></rich-text> | 104 | <rich-text :nodes="goodtail.content"></rich-text> |
106 | </view> | 105 | </view> |
107 | <view class="goodcomment" v-else> | 106 | <view class="goodcomment" v-else> |
108 | <view class="nodata" v-if="commentlist.length==0">暂无评论</view> | 107 | <view class="nodata" v-if="commentlist.length==0">暂无评论</view> |
109 | <view v-else> | 108 | <view v-else> |
110 | - <view class="goodcommentop flexone" > | 109 | + <view class="goodcommentop flexone"> |
111 | <view class="topitem" @click="commenttype" :data-id="0">全部({{total}})</view> | 110 | <view class="topitem" @click="commenttype" :data-id="0">全部({{total}})</view> |
112 | <view class="topitem" @click="commenttype" :data-id="1">好评({{total1}})</view> | 111 | <view class="topitem" @click="commenttype" :data-id="1">好评({{total1}})</view> |
113 | <view class="topitem" @click="commenttype" :data-id="2">中评({{total2}})</view> | 112 | <view class="topitem" @click="commenttype" :data-id="2">中评({{total2}})</view> |
114 | <view class="topitem" @click="commenttype" :data-id="3">差评({{total3}})</view> | 113 | <view class="topitem" @click="commenttype" :data-id="3">差评({{total3}})</view> |
115 | </view> | 114 | </view> |
116 | <view class="commentlist"> | 115 | <view class="commentlist"> |
117 | - <view class="jianintro photobox" bindtap="comdetail"> | 116 | + <view class="jianintro photobox" bindtap="comdetail" v-for="(item,index) in commentlist" :key="index"> |
118 | <view class="comtop flextwo"> | 117 | <view class="comtop flextwo"> |
119 | <view class="comleft"> | 118 | <view class="comleft"> |
120 | - <image src="../../static/userpic.png"></image> | 119 | + <image :src="item.user.avatar"></image> |
121 | </view> | 120 | </view> |
122 | <view class="comright"> | 121 | <view class="comright"> |
123 | - | ||
124 | <view class="comrtop"> | 122 | <view class="comrtop"> |
125 | <view class="usertop flextwo"> | 123 | <view class="usertop flextwo"> |
126 | - <view class="comrname">皖湘情</view> | ||
127 | - <view class="comdate">2019年10月12日</view> | 124 | + <view class="comrname">{{item.user.nickname}}</view> |
125 | + <view class="comdate">{{item.createtime}}</view> | ||
128 | </view> | 126 | </view> |
129 | <view class="star starone flexone"> | 127 | <view class="star starone flexone"> |
130 | <view class="staritem"> | 128 | <view class="staritem"> |
@@ -150,26 +148,27 @@ | @@ -150,26 +148,27 @@ | ||
150 | </view> | 148 | </view> |
151 | </view> | 149 | </view> |
152 | </view> | 150 | </view> |
153 | - <view class="commenttext"> | ||
154 | - 太给力了!!要加紧学习了啊太给力了!!要加紧学习了啊太给力了!!要加紧学习了啊 | ||
155 | - </view> | ||
156 | - <view class="commentimg flexone"> | ||
157 | - <view class="commentimgitem"> | ||
158 | - <image src="../../static/shop.png" mode=""></image> | 151 | + <view> |
152 | + <view class="commenttext"> | ||
153 | + {{item.content}} | ||
159 | </view> | 154 | </view> |
160 | - <view class="commentimgitem"> | ||
161 | - <image src="../../static/shop.png" mode=""></image> | ||
162 | - </view> | ||
163 | - <view class="commentimgitem"> | ||
164 | - <image src="../../static/shop.png" mode=""></image> | 155 | + <view class="commentimg flexone" v-if="item.images.length!=0"> |
156 | + <view class="commentimgitem" v-for="(itemk,indexk) in item.images" :key="indexk" @click="previewimg(index,indexk)"> | ||
157 | + <image :src="itemk" mode=""></image> | ||
158 | + </view> | ||
159 | + <!-- <view class="commentimgitem"> | ||
160 | + <image src="../../static/shop.png" mode=""></image> | ||
161 | + </view> | ||
162 | + <view class="commentimgitem"> | ||
163 | + <image src="../../static/shop.png" mode=""></image> | ||
164 | + </view> --> | ||
165 | </view> | 165 | </view> |
166 | </view> | 166 | </view> |
167 | + | ||
167 | </view> | 168 | </view> |
168 | </view> | 169 | </view> |
169 | 170 | ||
170 | </view> | 171 | </view> |
171 | - | ||
172 | - | ||
173 | </view> | 172 | </view> |
174 | <!-- 底部购物车 --> | 173 | <!-- 底部购物车 --> |
175 | <view class='cartbot flextwo'> | 174 | <view class='cartbot flextwo'> |
@@ -274,10 +273,10 @@ | @@ -274,10 +273,10 @@ | ||
274 | star_type: '', | 273 | star_type: '', |
275 | // 评论列表 | 274 | // 评论列表 |
276 | commentlist: [], | 275 | commentlist: [], |
277 | - total:'', | ||
278 | - total1:'', | ||
279 | - total2:'', | ||
280 | - total3:'', | 276 | + total:0, |
277 | + total1:0, | ||
278 | + total2:0, | ||
279 | + total3:0, | ||
281 | carttotal:0, | 280 | carttotal:0, |
282 | score_goods_spec:'', | 281 | score_goods_spec:'', |
283 | data:[], | 282 | data:[], |
@@ -305,9 +304,13 @@ | @@ -305,9 +304,13 @@ | ||
305 | this.getshopgoodtail() | 304 | this.getshopgoodtail() |
306 | } | 305 | } |
307 | // 获取购物车气泡 | 306 | // 获取购物车气泡 |
308 | - this.getcartnum() | 307 | + this.getcartnum(); |
308 | + // 获取评论列表 | ||
309 | + this.getcommentlist() | ||
309 | 310 | ||
310 | }, | 311 | }, |
312 | + | ||
313 | + | ||
311 | onUnload(){ | 314 | onUnload(){ |
312 | uni.redirectTo({ | 315 | uni.redirectTo({ |
313 | url:'/pages/homepage/homepage' | 316 | url:'/pages/homepage/homepage' |
@@ -315,6 +318,8 @@ | @@ -315,6 +318,8 @@ | ||
315 | }, | 318 | }, |
316 | methods: { | 319 | methods: { |
317 | 320 | ||
321 | + | ||
322 | + | ||
318 | // 获取购物车气泡 | 323 | // 获取购物车气泡 |
319 | getcartnum(){ | 324 | getcartnum(){ |
320 | let that = this; | 325 | let that = this; |
@@ -371,10 +376,10 @@ | @@ -371,10 +376,10 @@ | ||
371 | app.post(url, params).then((res) => { | 376 | app.post(url, params).then((res) => { |
372 | console.log('获取评论列表',res); | 377 | console.log('获取评论列表',res); |
373 | that.commentlist = that.commentlist.concat(res.data.data.list); | 378 | that.commentlist = that.commentlist.concat(res.data.data.list); |
374 | - // that.total=res.data.data.total; | ||
375 | - // that.total1=res.data.data.total1; | ||
376 | - // that.total2=res.data.data.total2 | ||
377 | - // that.total3=res.data.data.total3 | 379 | + that.total=res.data.data.total; |
380 | + that.total1=res.data.data.total1; | ||
381 | + that.total2=res.data.data.total2; | ||
382 | + that.total3=res.data.data.total3; | ||
378 | 383 | ||
379 | 384 | ||
380 | }).catch((err) => { | 385 | }).catch((err) => { |
@@ -382,6 +387,17 @@ | @@ -382,6 +387,17 @@ | ||
382 | 387 | ||
383 | }) | 388 | }) |
384 | }, | 389 | }, |
390 | + // 预览图片 | ||
391 | + previewimg(index,indexk){ | ||
392 | + uni.previewImage({ | ||
393 | + current: that.commentlist[index].images[indexk], | ||
394 | + urls: that.commentlist[index].images, | ||
395 | + success: function (res) { }, | ||
396 | + fail: function (res) { }, | ||
397 | + complete: function (res) { }, | ||
398 | + }) | ||
399 | + 微信程序 | ||
400 | + }, | ||
385 | 401 | ||
386 | // 数量加减 | 402 | // 数量加减 |
387 | reducenum() { | 403 | reducenum() { |
@@ -470,8 +486,6 @@ | @@ -470,8 +486,6 @@ | ||
470 | that.hours=hrStr; | 486 | that.hours=hrStr; |
471 | that.minutes=minStr; | 487 | that.minutes=minStr; |
472 | that.seconds=secStr; | 488 | that.seconds=secStr; |
473 | - | ||
474 | - | ||
475 | totalSecond--; | 489 | totalSecond--; |
476 | if (totalSecond <= 0) { | 490 | if (totalSecond <= 0) { |
477 | clearInterval(interval); | 491 | clearInterval(interval); |
@@ -25,11 +25,12 @@ | @@ -25,11 +25,12 @@ | ||
25 | </view> | 25 | </view> |
26 | </view> | 26 | </view> |
27 | <!-- --> | 27 | <!-- --> |
28 | - <view class="userType" v-if="userinfo.is_card==2" @click="cardrenzheng">身份认证 >></view> | ||
29 | - <view class="userActive" v-else> | 28 | + <!-- v-if="userinfo.is_card==2" --> |
29 | + <view class="userType" @click="cardrenzheng">身份认证 >></view> | ||
30 | + <!-- <view class="userActive" v-else> | ||
30 | <image src="../../static/active.png" mode="widthFix" /> | 31 | <image src="../../static/active.png" mode="widthFix" /> |
31 | 已认证 | 32 | 已认证 |
32 | - </view> | 33 | + </view> --> |
33 | </view> | 34 | </view> |
34 | <view class="setup" @click.stop="set"> | 35 | <view class="setup" @click.stop="set"> |
35 | <image src="../../static/setup.png" mode="widthFix" /> | 36 | <image src="../../static/setup.png" mode="widthFix" /> |
@@ -11,15 +11,14 @@ | @@ -11,15 +11,14 @@ | ||
11 | <view class="minfo"> | 11 | <view class="minfo"> |
12 | <view class="left"> | 12 | <view class="left"> |
13 | <view class="money">{{itemk.money}}元</view> | 13 | <view class="money">{{itemk.money}}元</view> |
14 | - <view class="time">期限:{{itemk.start_returntime}}</view> | 14 | + <view class="time">期限:{{itemk.pasttime}}</view> |
15 | </view> | 15 | </view> |
16 | - <view class="btn" v-if="itemk.status==1" @click="paymoney(itemk)">还款</view> | ||
17 | - <view class="btn activea" v-else-if="itemk.status==3">已逾期</view> | 16 | + <view class="btn" v-if="itemk.status==1" @click="paymoneywait">待还款</view> |
17 | + <view class="btn" v-else-if="itemk.status==4" @click="paymoney(itemk)">还款</view> | ||
18 | + <view class="btn activea" v-else-if="itemk.status==3" @click="paymoney(itemk)">已逾期</view> | ||
18 | <view class="btn activeb" v-else>已还款</view> | 19 | <view class="btn activeb" v-else>已还款</view> |
19 | </view> | 20 | </view> |
20 | </view> | 21 | </view> |
21 | - | ||
22 | - | ||
23 | <!-- <view class="xitem"> | 22 | <!-- <view class="xitem"> |
24 | <view class="month">7月</view> | 23 | <view class="month">7月</view> |
25 | <view class="minfo"> | 24 | <view class="minfo"> |
@@ -52,7 +51,6 @@ | @@ -52,7 +51,6 @@ | ||
52 | </view> | 51 | </view> |
53 | --> | 52 | --> |
54 | 53 | ||
55 | - | ||
56 | </view> | 54 | </view> |
57 | </view> | 55 | </view> |
58 | <view class="cover" v-if="paycover"> | 56 | <view class="cover" v-if="paycover"> |
@@ -74,8 +72,6 @@ | @@ -74,8 +72,6 @@ | ||
74 | <view class="right" @click="selecttype" :data-id="1"> | 72 | <view class="right" @click="selecttype" :data-id="1"> |
75 | <image src="../../static/check.png" mode="widthFix" class="check" v-if="type==1"/> | 73 | <image src="../../static/check.png" mode="widthFix" class="check" v-if="type==1"/> |
76 | <image src="../../static/nocheck.png" mode="widthFix" class="check" v-else/> | 74 | <image src="../../static/nocheck.png" mode="widthFix" class="check" v-else/> |
77 | - | ||
78 | - | ||
79 | </view> | 75 | </view> |
80 | </view> | 76 | </view> |
81 | <view class="payItem"> | 77 | <view class="payItem"> |
@@ -89,7 +85,6 @@ | @@ -89,7 +85,6 @@ | ||
89 | 85 | ||
90 | </view> | 86 | </view> |
91 | </view> | 87 | </view> |
92 | - | ||
93 | <view class="payItem"> | 88 | <view class="payItem"> |
94 | <view class="left"> | 89 | <view class="left"> |
95 | <image src="../../static/balance.png" mode="widthFix" /> | 90 | <image src="../../static/balance.png" mode="widthFix" /> |
@@ -130,6 +125,13 @@ export default { | @@ -130,6 +125,13 @@ export default { | ||
130 | selecttype(e){ | 125 | selecttype(e){ |
131 | this.type=e.currentTarget.dataset.id; | 126 | this.type=e.currentTarget.dataset.id; |
132 | }, | 127 | }, |
128 | + // 待还款 | ||
129 | + paymoneywait(){ | ||
130 | + uni.showToast({ | ||
131 | + title:"该订单还未到可还款时间", | ||
132 | + icon:"none" | ||
133 | + }) | ||
134 | + }, | ||
133 | // 还款 | 135 | // 还款 |
134 | paymoney(item){ | 136 | paymoney(item){ |
135 | console.log(item) | 137 | console.log(item) |
@@ -227,12 +227,22 @@ | @@ -227,12 +227,22 @@ | ||
227 | var url = 'order/pay'; | 227 | var url = 'order/pay'; |
228 | var params = { | 228 | var params = { |
229 | // order_id: item.order_id, | 229 | // order_id: item.order_id, |
230 | - order_detail_id:item.order_id | ||
231 | - | 230 | + order_detail_id:item.id |
232 | } | 231 | } |
233 | console.log('7766554', params) | 232 | console.log('7766554', params) |
234 | app.post(url, params).then((res) => { | 233 | app.post(url, params).then((res) => { |
235 | console.log(res); | 234 | console.log(res); |
235 | + if(item.pay_type == 2) { | ||
236 | + // 支付宝支付 | ||
237 | + uni.requestPayment({ | ||
238 | + provider: 'alipay', | ||
239 | + orderInfo: res.data.data.result, | ||
240 | + success(r) { | ||
241 | + console.log(r) | ||
242 | + } | ||
243 | + | ||
244 | + }) | ||
245 | + } | ||
236 | 246 | ||
237 | }).catch((err) => { | 247 | }).catch((err) => { |
238 | console.log(err) | 248 | console.log(err) |
static/logok.png
0 → 100644
87.7 KB
不能预览此文件类型
1 | 1 | ||
2 | var isReady=false;var onReadyCallbacks=[]; | 2 | var isReady=false;var onReadyCallbacks=[]; |
3 | -var __uniConfig = {"pages":["pages/homepage/homepage","pages/guide/judge","pages/guide/guide","pages/login/loginindex","pages/usercenter/cardrenzheng","pages/homepage/map","pages/homepage/map","pages/usercenter/fenxiaomyteam","pages/usercenter/fenxiaotidetail","pages/usercenter/fenxiaodingdan","pages/usercenter/fenxiaoyongjin","pages/usercenter/myfenxiao","pages/nearshop/allprovince","pages/usercenter/orderdetail","pages/nearshop/selectcoupon","pages/nearshop/cartbox","pages/nearshop/cartlist","pages/homepage/collectshop","pages/luntan/examineresult","pages/luntan/examintext","pages/luntan/examine","pages/nearshop/sureorder","pages/login/accountpassword","pages/login/registercode","pages/homepage/mygift","pages/homepage/drawlottery","pages/login/finishregister","pages/homepage/miaosha","pages/luntan/luntan","pages/luntan/addcontract","pages/luntan/luntandetail","pages/luntan/luntandetailsecond","pages/luntan/luntanlist","pages/luntan/luntanpage","pages/nearshop/goodtail","pages/nearshop/shopdetail","pages/usercenter/companyshenhe","pages/usercenter/usercenter","pages/nearshop/nearshop","pages/homepage/goodkind","pages/homepage/jifenshop","pages/homepage/shoplist","pages/homepage/search","pages/login/xieyi","pages/login/setmima","pages/login/register","pages/login/forgetmima","pages/index/index","pages/usercenter/setPassword","pages/usercenter/accountDetails","pages/usercenter/recharge","pages/usercenter/transferAccounts","pages/usercenter/transferDetails","pages/usercenter/cashOut","pages/usercenter/account","pages/usercenter/withdrawalsRecord","pages/usercenter/addCard","pages/usercenter/editCard","pages/usercenter/myCredit","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/sales","pages/usercenter/myAchievement","pages/usercenter/myCustomer","pages/usercenter/my","pages/usercenter/wallet","pages/usercenter/setUp","pages/usercenter/setUp","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/sales","pages/usercenter/personalData","pages/usercenter/address","pages/usercenter/addAddress","pages/usercenter/myCredit","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/myAchievement","pages/usercenter/myCustomer"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"black","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}]},"renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"zhongmian","compilerVersion":"2.6.16","entryPagePath":"pages/homepage/homepage","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; | ||
4 | -var __uniRoutes = [{"path":"/pages/homepage/homepage","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/guide/judge","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/guide/guide","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/login/loginindex","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cardrenzheng","meta":{},"window":{"navigationBarTitleText":"身份认证","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/map","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaomyteam","meta":{},"window":{"navigationBarTitleText":"我的团队","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaotidetail","meta":{},"window":{"navigationBarTitleText":"提现明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaodingdan","meta":{},"window":{"navigationBarTitleText":"分销订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaoyongjin","meta":{},"window":{"navigationBarTitleText":"分销佣金","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myfenxiao","meta":{},"window":{"navigationBarTitleText":"我的分销","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/allprovince","meta":{},"window":{"navigationBarTitleText":"全部省份","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/selectcoupon","meta":{},"window":{"navigationBarTitleText":"选择优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartbox","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartlist","meta":{},"window":{"navigationBarTitleText":"购物车","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/collectshop","meta":{},"window":{"navigationBarTitleText":"店铺收藏","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examineresult","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examintext","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examine","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/sureorder","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/accountpassword","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/registercode","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/mygift","meta":{},"window":{"navigationBarTitleText":"我的奖品","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/drawlottery","meta":{},"window":{"navigationBarTitleText":"抽奖专区","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/finishregister","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/miaosha","meta":{},"window":{"navigationBarTitleText":"秒杀商城","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","titleNView":{"titleSize":"12"}}},{"path":"/pages/luntan/luntan","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"论坛","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/luntan/addcontract","meta":{},"window":{"navigationBarTitleText":"发布帖子","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetail","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetailsecond","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanlist","meta":{},"window":{"navigationBarTitleText":"帖子列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanpage","meta":{},"window":{"navigationBarTitleText":"个人主页","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/goodtail","meta":{},"window":{"navigationBarTitleText":"商品详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/shopdetail","meta":{},"window":{"navigationBarTitleText":"店铺详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/companyshenhe","meta":{},"window":{"navigationBarTitleText":"企业会员申请","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/usercenter","meta":{},"window":{"navigationBarTitleText":"会员中心","navigationBarBackgroundColor":"#ECCB90","navigationBarTextStyle":"white"}},{"path":"/pages/nearshop/nearshop","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"附近店铺","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/goodkind","meta":{},"window":{"navigationBarTitleText":"商品分类","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/jifenshop","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/shoplist","meta":{},"window":{"navigationBarTitleText":"商品列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/search","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/login/xieyi","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/setmima","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/register","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/forgetmima","meta":{},"window":{"navigationBarTitleText":"重置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"uni-app"}},{"path":"/pages/usercenter/setPassword","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/accountDetails","meta":{},"window":{"navigationBarTitleText":"账户明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/recharge","meta":{},"window":{"navigationBarTitleText":"充值","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferAccounts","meta":{},"window":{"navigationBarTitleText":"转账","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferDetails","meta":{},"window":{"navigationBarTitleText":"转账详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cashOut","meta":{},"window":{"navigationBarTitleText":"提现","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/account","meta":{},"window":{"navigationBarTitleText":"选择到账账户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/withdrawalsRecord","meta":{},"window":{"navigationBarTitleText":"提现记录","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addCard","meta":{},"window":{"navigationBarTitleText":"添加银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/editCard","meta":{},"window":{"navigationBarTitleText":"编辑银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCredit","meta":{},"window":{"navigationBarTitleText":"我的赊吧","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myIntegral","meta":{},"window":{"navigationBarTitleText":"我的积分","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCoupon","meta":{},"window":{"navigationBarTitleText":"我的优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myPublish","meta":{},"window":{"navigationBarTitleText":"我的发布","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myOrder","meta":{},"window":{"navigationBarTitleText":"我的订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/shopEvaluate","meta":{},"window":{"navigationBarTitleText":"商品评价","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/sales","meta":{},"window":{"navigationBarTitleText":"销售管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myAchievement","meta":{},"window":{"navigationBarTitleText":"我的业绩","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCustomer","meta":{},"window":{"navigationBarTitleText":"我的客户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/my","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/wallet","meta":{},"window":{"navigationBarTitleText":"我的钱包","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white"}},{"path":"/pages/usercenter/setUp","meta":{},"window":{"navigationBarTitleText":"设置","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/personalData","meta":{},"window":{"navigationBarTitleText":"个人资料","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/address","meta":{},"window":{"navigationBarTitleText":"地址管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addAddress","meta":{},"window":{"navigationBarTitleText":"新增收货地址","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}}]; | 3 | +var __uniConfig = {"pages":["pages/login/loginindex","pages/homepage/homepage","pages/guide/judge","pages/guide/guide","pages/usercenter/cardrenzheng","pages/homepage/map","pages/homepage/map","pages/usercenter/fenxiaomyteam","pages/usercenter/fenxiaotidetail","pages/usercenter/fenxiaodingdan","pages/usercenter/fenxiaoyongjin","pages/usercenter/myfenxiao","pages/nearshop/allprovince","pages/usercenter/orderdetail","pages/nearshop/selectcoupon","pages/nearshop/cartbox","pages/nearshop/cartlist","pages/homepage/collectshop","pages/luntan/examineresult","pages/luntan/examintext","pages/luntan/examine","pages/nearshop/sureorder","pages/login/accountpassword","pages/login/registercode","pages/homepage/mygift","pages/homepage/drawlottery","pages/login/finishregister","pages/homepage/miaosha","pages/luntan/luntan","pages/luntan/addcontract","pages/luntan/luntandetail","pages/luntan/luntandetailsecond","pages/luntan/luntanlist","pages/luntan/luntanpage","pages/nearshop/goodtail","pages/nearshop/shopdetail","pages/usercenter/companyshenhe","pages/usercenter/usercenter","pages/nearshop/nearshop","pages/homepage/goodkind","pages/homepage/jifenshop","pages/homepage/shoplist","pages/homepage/search","pages/login/xieyi","pages/login/setmima","pages/login/register","pages/login/forgetmima","pages/index/index","pages/usercenter/setPassword","pages/usercenter/accountDetails","pages/usercenter/recharge","pages/usercenter/transferAccounts","pages/usercenter/transferDetails","pages/usercenter/cashOut","pages/usercenter/account","pages/usercenter/withdrawalsRecord","pages/usercenter/addCard","pages/usercenter/editCard","pages/usercenter/myCredit","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/sales","pages/usercenter/myAchievement","pages/usercenter/myCustomer","pages/usercenter/my","pages/usercenter/wallet","pages/usercenter/setUp","pages/usercenter/setUp","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/sales","pages/usercenter/personalData","pages/usercenter/address","pages/usercenter/addAddress","pages/usercenter/myCredit","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/myAchievement","pages/usercenter/myCustomer"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"black","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}]},"renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"zhongmian","compilerVersion":"2.6.16","entryPagePath":"pages/login/loginindex","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; |
4 | +var __uniRoutes = [{"path":"/pages/login/loginindex","meta":{"isQuit":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/homepage","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/guide/judge","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/guide/guide","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/usercenter/cardrenzheng","meta":{},"window":{"navigationBarTitleText":"身份认证","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/map","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaomyteam","meta":{},"window":{"navigationBarTitleText":"我的团队","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaotidetail","meta":{},"window":{"navigationBarTitleText":"提现明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaodingdan","meta":{},"window":{"navigationBarTitleText":"分销订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaoyongjin","meta":{},"window":{"navigationBarTitleText":"分销佣金","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myfenxiao","meta":{},"window":{"navigationBarTitleText":"我的分销","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/allprovince","meta":{},"window":{"navigationBarTitleText":"全部省份","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/selectcoupon","meta":{},"window":{"navigationBarTitleText":"选择优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartbox","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartlist","meta":{},"window":{"navigationBarTitleText":"购物车","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/collectshop","meta":{},"window":{"navigationBarTitleText":"店铺收藏","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examineresult","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examintext","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examine","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/sureorder","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/accountpassword","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/registercode","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/mygift","meta":{},"window":{"navigationBarTitleText":"我的奖品","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/drawlottery","meta":{},"window":{"navigationBarTitleText":"抽奖专区","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/finishregister","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/miaosha","meta":{},"window":{"navigationBarTitleText":"秒杀商城","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","titleNView":{"titleSize":"12"}}},{"path":"/pages/luntan/luntan","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"论坛","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/luntan/addcontract","meta":{},"window":{"navigationBarTitleText":"发布帖子","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetail","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetailsecond","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanlist","meta":{},"window":{"navigationBarTitleText":"帖子列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanpage","meta":{},"window":{"navigationBarTitleText":"个人主页","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/goodtail","meta":{},"window":{"navigationBarTitleText":"商品详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/shopdetail","meta":{},"window":{"navigationBarTitleText":"店铺详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/companyshenhe","meta":{},"window":{"navigationBarTitleText":"企业会员申请","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/usercenter","meta":{},"window":{"navigationBarTitleText":"会员中心","navigationBarBackgroundColor":"#ECCB90","navigationBarTextStyle":"white"}},{"path":"/pages/nearshop/nearshop","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"附近店铺","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/goodkind","meta":{},"window":{"navigationBarTitleText":"商品分类","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/jifenshop","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/shoplist","meta":{},"window":{"navigationBarTitleText":"商品列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/search","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/login/xieyi","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/setmima","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/register","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/forgetmima","meta":{},"window":{"navigationBarTitleText":"重置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"uni-app"}},{"path":"/pages/usercenter/setPassword","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/accountDetails","meta":{},"window":{"navigationBarTitleText":"账户明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/recharge","meta":{},"window":{"navigationBarTitleText":"充值","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferAccounts","meta":{},"window":{"navigationBarTitleText":"转账","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferDetails","meta":{},"window":{"navigationBarTitleText":"转账详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cashOut","meta":{},"window":{"navigationBarTitleText":"提现","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/account","meta":{},"window":{"navigationBarTitleText":"选择到账账户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/withdrawalsRecord","meta":{},"window":{"navigationBarTitleText":"提现记录","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addCard","meta":{},"window":{"navigationBarTitleText":"添加银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/editCard","meta":{},"window":{"navigationBarTitleText":"编辑银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCredit","meta":{},"window":{"navigationBarTitleText":"我的赊吧","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myIntegral","meta":{},"window":{"navigationBarTitleText":"我的积分","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCoupon","meta":{},"window":{"navigationBarTitleText":"我的优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myPublish","meta":{},"window":{"navigationBarTitleText":"我的发布","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myOrder","meta":{},"window":{"navigationBarTitleText":"我的订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/shopEvaluate","meta":{},"window":{"navigationBarTitleText":"商品评价","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/sales","meta":{},"window":{"navigationBarTitleText":"销售管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myAchievement","meta":{},"window":{"navigationBarTitleText":"我的业绩","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCustomer","meta":{},"window":{"navigationBarTitleText":"我的客户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/my","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/wallet","meta":{},"window":{"navigationBarTitleText":"我的钱包","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white"}},{"path":"/pages/usercenter/setUp","meta":{},"window":{"navigationBarTitleText":"设置","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/personalData","meta":{},"window":{"navigationBarTitleText":"个人资料","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/address","meta":{},"window":{"navigationBarTitleText":"地址管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addAddress","meta":{},"window":{"navigationBarTitleText":"新增收货地址","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}}]; | ||
5 | __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()})}}); | 5 | __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()})}}); |
6 | 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}}}}); | 6 | 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}}}}); |
此 diff 太大无法显示。
此 diff 太大无法显示。
1 | -{"@platforms":["android","iPhone","iPad"],"id":"__UNI__86EF000","name":"zhongmian","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"FaceID":{},"Payment":{},"Maps":{"coordType":"gcj02"},"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":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","distribute":{"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"payment":{"alipay":{},"weixin":{"appid":"wx24f90adc1d2f4f3d","UniversalLinks":""}},"ad":{},"maps":{"amap":{"appkey_ios":"39ab1cc4587cc0c5f21f25054c59bb18","appkey_android":"01d25fb8343d7ce5040bc32cb3e5379f"}},"oauth":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{"AThree-Face":{"__plugin_info__":{"name":"Face","description":"人脸核身","platforms":"Android,iOS","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.6.16","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}} | ||
1 | +{"@platforms":["android","iPhone","iPad"],"id":"__UNI__86EF000","name":"zhongmian","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"FaceID":{},"Payment":{},"Maps":{"coordType":"gcj02"},"OAuth":{},"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":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","distribute":{"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"payment":{"alipay":{},"weixin":{"appid":"wx24f90adc1d2f4f3d","UniversalLinks":""}},"ad":{},"maps":{"amap":{"appkey_ios":"39ab1cc4587cc0c5f21f25054c59bb18","appkey_android":"01d25fb8343d7ce5040bc32cb3e5379f"}},"oauth":{"weixin":{"appid":"wx24f90adc1d2f4f3d","appsecret":"e1da139286ef1335fdd36029a2ac7fb5","UniversalLinks":""}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{"AThree-Face":{"__plugin_info__":{"name":"Face","description":"人脸核身","platforms":"Android,iOS","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.6.16","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}],"height":"50px"},"launch_path":"__uniappview.html"}} |
87.7 KB
483 字节
1 | 1 | ||
2 | var isReady=false;var onReadyCallbacks=[]; | 2 | var isReady=false;var onReadyCallbacks=[]; |
3 | -var __uniConfig = {"pages":["pages/homepage/homepage","pages/guide/judge","pages/guide/guide","pages/login/loginindex","pages/usercenter/cardrenzheng","pages/homepage/map","pages/homepage/map","pages/usercenter/fenxiaomyteam","pages/usercenter/fenxiaotidetail","pages/usercenter/fenxiaodingdan","pages/usercenter/fenxiaoyongjin","pages/usercenter/myfenxiao","pages/nearshop/allprovince","pages/usercenter/orderdetail","pages/nearshop/selectcoupon","pages/nearshop/cartbox","pages/nearshop/cartlist","pages/homepage/collectshop","pages/luntan/examineresult","pages/luntan/examintext","pages/luntan/examine","pages/nearshop/sureorder","pages/login/accountpassword","pages/login/registercode","pages/homepage/mygift","pages/homepage/drawlottery","pages/login/finishregister","pages/homepage/miaosha","pages/luntan/luntan","pages/luntan/addcontract","pages/luntan/luntandetail","pages/luntan/luntandetailsecond","pages/luntan/luntanlist","pages/luntan/luntanpage","pages/nearshop/goodtail","pages/nearshop/shopdetail","pages/usercenter/companyshenhe","pages/usercenter/usercenter","pages/nearshop/nearshop","pages/homepage/goodkind","pages/homepage/jifenshop","pages/homepage/shoplist","pages/homepage/search","pages/login/xieyi","pages/login/setmima","pages/login/register","pages/login/forgetmima","pages/index/index","pages/usercenter/setPassword","pages/usercenter/accountDetails","pages/usercenter/recharge","pages/usercenter/transferAccounts","pages/usercenter/transferDetails","pages/usercenter/cashOut","pages/usercenter/account","pages/usercenter/withdrawalsRecord","pages/usercenter/addCard","pages/usercenter/editCard","pages/usercenter/myCredit","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/sales","pages/usercenter/myAchievement","pages/usercenter/myCustomer","pages/usercenter/my","pages/usercenter/wallet","pages/usercenter/setUp","pages/usercenter/setUp","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/sales","pages/usercenter/personalData","pages/usercenter/address","pages/usercenter/addAddress","pages/usercenter/myCredit","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/myAchievement","pages/usercenter/myCustomer"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"black","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}]},"renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"zhongmian","compilerVersion":"2.6.16","entryPagePath":"pages/homepage/homepage","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; | ||
4 | -var __uniRoutes = [{"path":"/pages/homepage/homepage","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/guide/judge","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/guide/guide","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/login/loginindex","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cardrenzheng","meta":{},"window":{"navigationBarTitleText":"身份认证","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/map","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaomyteam","meta":{},"window":{"navigationBarTitleText":"我的团队","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaotidetail","meta":{},"window":{"navigationBarTitleText":"提现明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaodingdan","meta":{},"window":{"navigationBarTitleText":"分销订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaoyongjin","meta":{},"window":{"navigationBarTitleText":"分销佣金","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myfenxiao","meta":{},"window":{"navigationBarTitleText":"我的分销","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/allprovince","meta":{},"window":{"navigationBarTitleText":"全部省份","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/selectcoupon","meta":{},"window":{"navigationBarTitleText":"选择优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartbox","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartlist","meta":{},"window":{"navigationBarTitleText":"购物车","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/collectshop","meta":{},"window":{"navigationBarTitleText":"店铺收藏","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examineresult","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examintext","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examine","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/sureorder","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/accountpassword","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/registercode","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/mygift","meta":{},"window":{"navigationBarTitleText":"我的奖品","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/drawlottery","meta":{},"window":{"navigationBarTitleText":"抽奖专区","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/finishregister","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/miaosha","meta":{},"window":{"navigationBarTitleText":"秒杀商城","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","titleNView":{"titleSize":"12"}}},{"path":"/pages/luntan/luntan","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"论坛","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/luntan/addcontract","meta":{},"window":{"navigationBarTitleText":"发布帖子","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetail","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetailsecond","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanlist","meta":{},"window":{"navigationBarTitleText":"帖子列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanpage","meta":{},"window":{"navigationBarTitleText":"个人主页","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/goodtail","meta":{},"window":{"navigationBarTitleText":"商品详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/shopdetail","meta":{},"window":{"navigationBarTitleText":"店铺详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/companyshenhe","meta":{},"window":{"navigationBarTitleText":"企业会员申请","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/usercenter","meta":{},"window":{"navigationBarTitleText":"会员中心","navigationBarBackgroundColor":"#ECCB90","navigationBarTextStyle":"white"}},{"path":"/pages/nearshop/nearshop","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"附近店铺","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/goodkind","meta":{},"window":{"navigationBarTitleText":"商品分类","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/jifenshop","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/shoplist","meta":{},"window":{"navigationBarTitleText":"商品列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/search","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/login/xieyi","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/setmima","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/register","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/forgetmima","meta":{},"window":{"navigationBarTitleText":"重置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"uni-app"}},{"path":"/pages/usercenter/setPassword","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/accountDetails","meta":{},"window":{"navigationBarTitleText":"账户明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/recharge","meta":{},"window":{"navigationBarTitleText":"充值","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferAccounts","meta":{},"window":{"navigationBarTitleText":"转账","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferDetails","meta":{},"window":{"navigationBarTitleText":"转账详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cashOut","meta":{},"window":{"navigationBarTitleText":"提现","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/account","meta":{},"window":{"navigationBarTitleText":"选择到账账户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/withdrawalsRecord","meta":{},"window":{"navigationBarTitleText":"提现记录","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addCard","meta":{},"window":{"navigationBarTitleText":"添加银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/editCard","meta":{},"window":{"navigationBarTitleText":"编辑银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCredit","meta":{},"window":{"navigationBarTitleText":"我的赊吧","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myIntegral","meta":{},"window":{"navigationBarTitleText":"我的积分","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCoupon","meta":{},"window":{"navigationBarTitleText":"我的优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myPublish","meta":{},"window":{"navigationBarTitleText":"我的发布","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myOrder","meta":{},"window":{"navigationBarTitleText":"我的订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/shopEvaluate","meta":{},"window":{"navigationBarTitleText":"商品评价","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/sales","meta":{},"window":{"navigationBarTitleText":"销售管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myAchievement","meta":{},"window":{"navigationBarTitleText":"我的业绩","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCustomer","meta":{},"window":{"navigationBarTitleText":"我的客户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/my","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/wallet","meta":{},"window":{"navigationBarTitleText":"我的钱包","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white"}},{"path":"/pages/usercenter/setUp","meta":{},"window":{"navigationBarTitleText":"设置","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/personalData","meta":{},"window":{"navigationBarTitleText":"个人资料","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/address","meta":{},"window":{"navigationBarTitleText":"地址管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addAddress","meta":{},"window":{"navigationBarTitleText":"新增收货地址","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}}]; | 3 | +var __uniConfig = {"pages":["pages/login/loginindex","pages/homepage/homepage","pages/guide/judge","pages/guide/guide","pages/usercenter/cardrenzheng","pages/homepage/map","pages/homepage/map","pages/usercenter/fenxiaomyteam","pages/usercenter/fenxiaotidetail","pages/usercenter/fenxiaodingdan","pages/usercenter/fenxiaoyongjin","pages/usercenter/myfenxiao","pages/nearshop/allprovince","pages/usercenter/orderdetail","pages/nearshop/selectcoupon","pages/nearshop/cartbox","pages/nearshop/cartlist","pages/homepage/collectshop","pages/luntan/examineresult","pages/luntan/examintext","pages/luntan/examine","pages/nearshop/sureorder","pages/login/accountpassword","pages/login/registercode","pages/homepage/mygift","pages/homepage/drawlottery","pages/login/finishregister","pages/homepage/miaosha","pages/luntan/luntan","pages/luntan/addcontract","pages/luntan/luntandetail","pages/luntan/luntandetailsecond","pages/luntan/luntanlist","pages/luntan/luntanpage","pages/nearshop/goodtail","pages/nearshop/shopdetail","pages/usercenter/companyshenhe","pages/usercenter/usercenter","pages/nearshop/nearshop","pages/homepage/goodkind","pages/homepage/jifenshop","pages/homepage/shoplist","pages/homepage/search","pages/login/xieyi","pages/login/setmima","pages/login/register","pages/login/forgetmima","pages/index/index","pages/usercenter/setPassword","pages/usercenter/accountDetails","pages/usercenter/recharge","pages/usercenter/transferAccounts","pages/usercenter/transferDetails","pages/usercenter/cashOut","pages/usercenter/account","pages/usercenter/withdrawalsRecord","pages/usercenter/addCard","pages/usercenter/editCard","pages/usercenter/myCredit","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/sales","pages/usercenter/myAchievement","pages/usercenter/myCustomer","pages/usercenter/my","pages/usercenter/wallet","pages/usercenter/setUp","pages/usercenter/setUp","pages/usercenter/myIntegral","pages/usercenter/myCoupon","pages/usercenter/myPublish","pages/usercenter/sales","pages/usercenter/personalData","pages/usercenter/address","pages/usercenter/addAddress","pages/usercenter/myCredit","pages/usercenter/myOrder","pages/usercenter/shopEvaluate","pages/usercenter/myAchievement","pages/usercenter/myCustomer"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"black","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}]},"renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"zhongmian","compilerVersion":"2.6.16","entryPagePath":"pages/login/loginindex","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; |
4 | +var __uniRoutes = [{"path":"/pages/login/loginindex","meta":{"isQuit":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/homepage","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/guide/judge","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/guide/guide","meta":{},"window":{"enablePullDownRefresh":false,"onReachBottomDistance":100,"navigationStyle":"custom","contentAdjust":false,"bounce":"none"}},{"path":"/pages/usercenter/cardrenzheng","meta":{},"window":{"navigationBarTitleText":"身份认证","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/map","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaomyteam","meta":{},"window":{"navigationBarTitleText":"我的团队","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaotidetail","meta":{},"window":{"navigationBarTitleText":"提现明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaodingdan","meta":{},"window":{"navigationBarTitleText":"分销订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/fenxiaoyongjin","meta":{},"window":{"navigationBarTitleText":"分销佣金","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myfenxiao","meta":{},"window":{"navigationBarTitleText":"我的分销","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/allprovince","meta":{},"window":{"navigationBarTitleText":"全部省份","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/selectcoupon","meta":{},"window":{"navigationBarTitleText":"选择优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartbox","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/cartlist","meta":{},"window":{"navigationBarTitleText":"购物车","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/collectshop","meta":{},"window":{"navigationBarTitleText":"店铺收藏","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examineresult","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examintext","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/examine","meta":{},"window":{"navigationBarTitleText":"等级考试","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/sureorder","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/accountpassword","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/registercode","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/mygift","meta":{},"window":{"navigationBarTitleText":"我的奖品","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/drawlottery","meta":{},"window":{"navigationBarTitleText":"抽奖专区","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/finishregister","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/miaosha","meta":{},"window":{"navigationBarTitleText":"秒杀商城","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white","titleNView":{"titleSize":"12"}}},{"path":"/pages/luntan/luntan","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"论坛","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/luntan/addcontract","meta":{},"window":{"navigationBarTitleText":"发布帖子","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetail","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntandetailsecond","meta":{},"window":{"navigationBarTitleText":"帖子详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanlist","meta":{},"window":{"navigationBarTitleText":"帖子列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/luntan/luntanpage","meta":{},"window":{"navigationBarTitleText":"个人主页","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/goodtail","meta":{},"window":{"navigationBarTitleText":"商品详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/nearshop/shopdetail","meta":{},"window":{"navigationBarTitleText":"店铺详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/companyshenhe","meta":{},"window":{"navigationBarTitleText":"企业会员申请","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/usercenter","meta":{},"window":{"navigationBarTitleText":"会员中心","navigationBarBackgroundColor":"#ECCB90","navigationBarTextStyle":"white"}},{"path":"/pages/nearshop/nearshop","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"附近店铺","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/goodkind","meta":{},"window":{"navigationBarTitleText":"商品分类","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/jifenshop","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/shoplist","meta":{},"window":{"navigationBarTitleText":"商品列表","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/homepage/search","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"white","navigationStyle":"custom","bounce":"none"}},{"path":"/pages/login/xieyi","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/setmima","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/register","meta":{},"window":{"navigationBarTitleText":"注册","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/forgetmima","meta":{},"window":{"navigationBarTitleText":"重置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"uni-app"}},{"path":"/pages/usercenter/setPassword","meta":{},"window":{"navigationBarTitleText":"设置密码","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/accountDetails","meta":{},"window":{"navigationBarTitleText":"账户明细","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/recharge","meta":{},"window":{"navigationBarTitleText":"充值","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferAccounts","meta":{},"window":{"navigationBarTitleText":"转账","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/transferDetails","meta":{},"window":{"navigationBarTitleText":"转账详情","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/cashOut","meta":{},"window":{"navigationBarTitleText":"提现","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/account","meta":{},"window":{"navigationBarTitleText":"选择到账账户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/withdrawalsRecord","meta":{},"window":{"navigationBarTitleText":"提现记录","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addCard","meta":{},"window":{"navigationBarTitleText":"添加银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/editCard","meta":{},"window":{"navigationBarTitleText":"编辑银行卡","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCredit","meta":{},"window":{"navigationBarTitleText":"我的赊吧","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myIntegral","meta":{},"window":{"navigationBarTitleText":"我的积分","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCoupon","meta":{},"window":{"navigationBarTitleText":"我的优惠券","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myPublish","meta":{},"window":{"navigationBarTitleText":"我的发布","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myOrder","meta":{},"window":{"navigationBarTitleText":"我的订单","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/shopEvaluate","meta":{},"window":{"navigationBarTitleText":"商品评价","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/sales","meta":{},"window":{"navigationBarTitleText":"销售管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myAchievement","meta":{},"window":{"navigationBarTitleText":"我的业绩","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/myCustomer","meta":{},"window":{"navigationBarTitleText":"我的客户","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/my","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/wallet","meta":{},"window":{"navigationBarTitleText":"我的钱包","navigationBarBackgroundColor":"#C29445","navigationBarTextStyle":"white"}},{"path":"/pages/usercenter/setUp","meta":{},"window":{"navigationBarTitleText":"设置","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/personalData","meta":{},"window":{"navigationBarTitleText":"个人资料","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/address","meta":{},"window":{"navigationBarTitleText":"地址管理","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/usercenter/addAddress","meta":{},"window":{"navigationBarTitleText":"新增收货地址","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}}]; | ||
5 | __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()})}}); | 5 | __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()})}}); |
6 | 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}}}}); | 6 | 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}}}}); |
此 diff 太大无法显示。
此 diff 太大无法显示。
1 | -{"@platforms":["android","iPhone","iPad"],"id":"__UNI__86EF000","name":"zhongmian","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"FaceID":{},"Payment":{},"Maps":{"coordType":"gcj02"},"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":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","distribute":{"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"payment":{"alipay":{},"weixin":{"appid":"wx24f90adc1d2f4f3d","UniversalLinks":""}},"ad":{},"maps":{"amap":{"appkey_ios":"39ab1cc4587cc0c5f21f25054c59bb18","appkey_android":"01d25fb8343d7ce5040bc32cb3e5379f"}},"oauth":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{"AThree-Face":{"__plugin_info__":{"name":"Face","description":"人脸核身","platforms":"Android,iOS","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.6.16","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}} | ||
1 | +{"@platforms":["android","iPhone","iPad"],"id":"__UNI__86EF000","name":"zhongmian","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Payment":{},"Maps":{"coordType":"gcj02"},"OAuth":{},"FaceID":{},"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":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","distribute":{"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"payment":{"alipay":{},"weixin":{"appid":"wx24f90adc1d2f4f3d","UniversalLinks":""}},"ad":{},"maps":{"amap":{"appkey_ios":"39ab1cc4587cc0c5f21f25054c59bb18","appkey_android":"01d25fb8343d7ce5040bc32cb3e5379f"}},"oauth":{"weixin":{"appid":"wx24f90adc1d2f4f3d","appsecret":"e1da139286ef1335fdd36029a2ac7fb5","UniversalLinks":""}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{"AThree-Face":{"__plugin_info__":{"name":"Face","description":"人脸核身","platforms":"Android,iOS","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.6.16","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BDC4CE","selectedColor":"#EE8B27","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#ffffff","list":[{"pagePath":"pages/homepage/homepage","iconPath":"../../static/index.png","selectedIconPath":"../../static/indexactive.png","text":"首页"},{"pagePath":"pages/nearshop/nearshop","iconPath":"../../static/nearshop.png","selectedIconPath":"../../static/nearshopactive.png","text":"附近店铺"},{"pagePath":"pages/luntan/luntan","iconPath":"../../static/luntan.png","selectedIconPath":"../../static/luntanactive.png","text":"中面论坛"},{"pagePath":"pages/usercenter/my","iconPath":"../../static/user.png","selectedIconPath":"../../static/useractive.png","text":"个人中心"}],"height":"50px"},"launch_path":"__uniappview.html"}} |
unpackage/dist/dev/app-plus/static/logok.png
0 → 100644
87.7 KB
-
请 注册 或 登录 后发表评论