作者 lihongjuan

1

@@ -124,6 +124,11 @@ @@ -124,6 +124,11 @@
124 width: 100%; 124 width: 100%;
125 height: 100%; 125 height: 100%;
126 } 126 }
  127 + .eye{
  128 + width:45rpx;
  129 + height:35rpx;
  130 + font-size: 0;
  131 + }
127 /* .boxitemleft{ 132 /* .boxitemleft{
128 margin-top:8rpx; 133 margin-top:8rpx;
129 } 134 }
@@ -21,6 +21,9 @@ @@ -21,6 +21,9 @@
21 box-sizing: border-box; 21 box-sizing: border-box;
22 border-bottom: 1rpx solid #f5f5f5; 22 border-bottom: 1rpx solid #f5f5f5;
23 } 23 }
  24 +.inputk{
  25 + width:600rpx;
  26 +}
24 27
25 .boxitemleft { 28 .boxitemleft {
26 width: 40rpx; 29 width: 40rpx;
1 { 1 {
2 "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages 2 "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
3 - 3 + {
  4 + "path": "pages/login/loginindex",
  5 + "style": {
  6 + "navigationBarTitleText": "",
  7 + "navigationBarBackgroundColor": "#fff",
  8 + "navigationBarTextStyle": "black"
  9 + }
  10 + },
4 11
5 { 12 {
6 "path": "pages/homepage/homepage", 13 "path": "pages/homepage/homepage",
@@ -22,14 +29,7 @@ @@ -22,14 +29,7 @@
22 "navigationBarTextStyle": "black" 29 "navigationBarTextStyle": "black"
23 } 30 }
24 }, 31 },
25 - {  
26 - "path": "pages/login/loginindex",  
27 - "style": {  
28 - "navigationBarTitleText": "",  
29 - "navigationBarBackgroundColor": "#fff",  
30 - "navigationBarTextStyle": "black"  
31 - }  
32 - }, 32 +
33 33
34 { 34 {
35 "path": "pages/guide/judge", 35 "path": "pages/guide/judge",
@@ -13,14 +13,22 @@ @@ -13,14 +13,22 @@
13 </view> 13 </view>
14 </view> 14 </view>
15 <view class="loginboxitem flextwo"> 15 <view class="loginboxitem flextwo">
16 - <view class="flex"> 16 + <view class="flextwo">
  17 + <view class="inputk flexone">
17 <view class="boxitemleft"> 18 <view class="boxitemleft">
18 <image src="../../static/card.png" mode=""></image> 19 <image src="../../static/card.png" mode=""></image>
19 </view> 20 </view>
20 <view class="boxitemright"> 21 <view class="boxitemright">
21 - <input type="password" value="" placeholder="请输入密码" placeholder-class="enter" @input="entercode" /> 22 + <input type="password" value="" placeholder="请输入密码" placeholder-class="enter" @input="entercode" v-if="passtrue" />
  23 + <input type="text" value="" placeholder="请输入密码" placeholder-class="enter" @input="entercode" v-else />
22 </view> 24 </view>
23 </view> 25 </view>
  26 + <view class="eye" @click="chosepassword">
  27 + <image src="../../static/closeeye.png" mode="" v-if="passtrue"></image>
  28 + <image src="../../static/openeye.png" mode="" v-else></image>
  29 + </view>
  30 +
  31 + </view>
24 <!-- <view class="cardyan" @click="getcode" v-if="disable==false">{{time}}</view> 32 <!-- <view class="cardyan" @click="getcode" v-if="disable==false">{{time}}</view>
25 <view class="cardyan" v-else>{{time}}</view> --> 33 <view class="cardyan" v-else>{{time}}</view> -->
26 34
@@ -86,10 +94,17 @@ @@ -86,10 +94,17 @@
86 tipsone: false, 94 tipsone: false,
87 phone: '', 95 phone: '',
88 code: '', 96 code: '',
89 - type:'' 97 + type: '',
  98 + chosetype: 'Password',
  99 + passtrue: true
90 } 100 }
91 }, 101 },
92 methods: { 102 methods: {
  103 + // 密码
  104 + chosepassword() {
  105 + this.passtrue = !this.passtrue;
  106 +
  107 + },
93 // 输入手机号 108 // 输入手机号
94 enterphone(e) { 109 enterphone(e) {
95 this.phone = e.detail.value 110 this.phone = e.detail.value
@@ -126,22 +141,21 @@ @@ -126,22 +141,21 @@
126 } 141 }
127 var url = 'user/login1'; 142 var url = 'user/login1';
128 var params = { 143 var params = {
129 - mobile:that.phone,  
130 - password:that.code,  
131 - third_id: uni.getStorageSync("third_id")==undefined?''  
132 - : uni.getStorageSync("third_id") 144 + mobile: that.phone,
  145 + password: that.code,
  146 + third_id: uni.getStorageSync("third_id") == undefined ? '' : uni.getStorageSync("third_id")
133 } 147 }
134 - console.log('1222',params)  
135 - app.post(url, params,"post").then((res) => {  
136 - console.log(res,'37443'); 148 + console.log('1222', params)
  149 + app.post(url, params, "post").then((res) => {
  150 + console.log(res, '37443');
137 uni.showToast({ 151 uni.showToast({
138 - title:"登录成功",  
139 - icon:'none' 152 + title: "登录成功",
  153 + icon: 'none'
140 }) 154 })
141 - uni.setStorageSync("token",res.data.data.token); 155 + uni.setStorageSync("token", res.data.data.token);
142 setTimeout(function() { 156 setTimeout(function() {
143 uni.switchTab({ 157 uni.switchTab({
144 - url:'/pages/homepage/homepage' 158 + url: '/pages/homepage/homepage'
145 }) 159 })
146 }, 1500); 160 }, 1500);
147 }).catch((err) => { 161 }).catch((err) => {
@@ -149,8 +163,8 @@ @@ -149,8 +163,8 @@
149 163
150 console.log(err.data) 164 console.log(err.data)
151 uni.showToast({ 165 uni.showToast({
152 - title:err.msg,  
153 - icon:'none' 166 + title: err.msg,
  167 + icon: 'none'
154 }) 168 })
155 }) 169 })
156 }, 170 },
@@ -171,35 +185,35 @@ @@ -171,35 +185,35 @@
171 185
172 var url = 'user/wechat_login'; 186 var url = 'user/wechat_login';
173 var params = { 187 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) 188 + nickname: infoRes.userInfo.nickName,
  189 + avatar: infoRes.userInfo.avatarUrl,
  190 + openid: infoRes.userInfo.openId,
  191 + gender: infoRes.userInfo.gender,
  192 + city: infoRes.userInfo.city,
  193 + province: infoRes.userInfo.province,
  194 + country: infoRes.userInfo.country,
  195 + more: JSON.stringify(infoRes.userInfo)
182 } 196 }
183 console.log('参数', params) 197 console.log('参数', params)
184 app.post(url, params, "post").then((res) => { 198 app.post(url, params, "post").then((res) => {
185 console.log(res); 199 console.log(res);
186 - uni.setStorageSync("third_id",res.data.data.third_id)  
187 - if(res.data.data.token==undefined){ 200 + uni.setStorageSync("third_id", res.data.data.third_id)
  201 + if (res.data.data.token == undefined) {
188 uni.navigateTo({ 202 uni.navigateTo({
189 - url:'/pages/login/register' 203 + url: '/pages/login/register'
190 }) 204 })
191 - }else{ 205 + } else {
192 uni.showToast({ 206 uni.showToast({
193 - title:'登录成功',  
194 - icon:'none' 207 + title: '登录成功',
  208 + icon: 'none'
195 }) 209 })
196 - uni.setStorageSync("token",res.data.data.token) 210 + uni.setStorageSync("token", res.data.data.token)
197 211
198 - setTimeout(function(){ 212 + setTimeout(function() {
199 uni.switchTab({ 213 uni.switchTab({
200 - url:"/pages/homepage/homepage" 214 + url: "/pages/homepage/homepage"
201 }) 215 })
202 - },1500) 216 + }, 1500)
203 } 217 }
204 218
205 219
@@ -214,15 +228,15 @@ @@ -214,15 +228,15 @@
214 }); 228 });
215 }, 229 },
216 // 短信验证码登录 230 // 短信验证码登录
217 - loginindex(){ 231 + loginindex() {
218 uni.navigateTo({ 232 uni.navigateTo({
219 - url:'/pages/login/loginindex' 233 + url: '/pages/login/loginindex'
220 }) 234 })
221 }, 235 },
222 // 注册 236 // 注册
223 - register(){ 237 + register() {
224 uni.navigateTo({ 238 uni.navigateTo({
225 - url:'/pages/login/register' 239 + url: '/pages/login/register'
226 }) 240 })
227 }, 241 },
228 242
@@ -262,7 +276,7 @@ @@ -262,7 +276,7 @@
262 console.log('App Hide,app不再展现在前台') 276 console.log('App Hide,app不再展现在前台')
263 }, 277 },
264 onLoad(options) { 278 onLoad(options) {
265 - this.type=options.type 279 + this.type = options.type
266 280
267 }, 281 },
268 onReachBottom() { 282 onReachBottom() {
@@ -2,18 +2,35 @@ @@ -2,18 +2,35 @@
2 <view class="content"> 2 <view class="content">
3 <view class="loginbox loginboxmima"> 3 <view class="loginbox loginboxmima">
4 <view class="bangdingmima">设置密码之后你就可以使用账号密码登录了</view> 4 <view class="bangdingmima">设置密码之后你就可以使用账号密码登录了</view>
5 - <view class="setpassword flexone"> 5 + <view class="setpassword flextwo">
  6 + <view class="flexone inputk">
6 <view class="setpasswordleft">密码</view> 7 <view class="setpasswordleft">密码</view>
7 <view class="setpasswordright"> 8 <view class="setpasswordright">
8 - <input placeholder="6-16个字符以内,区分大小写" @input="enterfirst" type="password"> 9 + <input placeholder="6-16个字符以内,区分大小写" @input="enterfirst" type="password" v-if="passtrue">
  10 + <input placeholder="6-16个字符以内,区分大小写" @input="enterfirst" type="text" v-else>
9 </view> 11 </view>
10 </view> 12 </view>
11 - <view class="setpassword flexone"> 13 + <view class="eye" @click="chosepassword">
  14 + <image src="../../static/closeeye.png" mode="" v-if="passtrue"></image>
  15 + <image src="../../static/openeye.png" mode="" v-else></image>
  16 + </view>
  17 +
  18 + </view>
  19 + <view class="setpassword flextwo">
  20 + <view class="flexone inputk">
12 <view class="setpasswordleft">确认密码</view> 21 <view class="setpasswordleft">确认密码</view>
13 <view class="setpasswordright"> 22 <view class="setpasswordright">
14 - <input placeholder="请再次输入" @input="entersecond" type="password"> 23 + <input placeholder="请再次输入" @input="entersecond" type="password" v-if="passtruek">
  24 + <input placeholder="请再次输入" @input="entersecond" type="text" v-else>
15 </view> 25 </view>
16 </view> 26 </view>
  27 +
  28 + <view class="eye" @click="chosepasswordk">
  29 + <image src="../../static/closeeye.png" mode="" v-if="passtruek"></image>
  30 + <image src="../../static/openeye.png" mode="" v-else></image>
  31 + </view>
  32 +
  33 + </view>
17 </view> 34 </view>
18 35
19 <view class="loginbtn finish" @click="finish">确认注册</view> 36 <view class="loginbtn finish" @click="finish">确认注册</view>
@@ -27,13 +44,21 @@ @@ -27,13 +44,21 @@
27 return { 44 return {
28 firscode:'', 45 firscode:'',
29 secondcode:'', 46 secondcode:'',
30 - phone:'' 47 + phone:'',
  48 + passtrue:true,
  49 + passtruek:true
31 } 50 }
32 }, 51 },
33 onLoad(options) { 52 onLoad(options) {
34 this.phone=options.phone 53 this.phone=options.phone
35 }, 54 },
36 methods: { 55 methods: {
  56 + chosepassword(){
  57 + this.passtrue=!this.passtrue
  58 + },
  59 + chosepasswordk(){
  60 + this.passtruek=!this.passtruek
  61 + },
37 // 输入密码 62 // 输入密码
38 enterfirst(e){ 63 enterfirst(e){
39 this.firscode=e.detail.value 64 this.firscode=e.detail.value
@@ -2,18 +2,36 @@ @@ -2,18 +2,36 @@
2 <view class="content"> 2 <view class="content">
3 <view class="loginbox loginboxmima"> 3 <view class="loginbox loginboxmima">
4 <view class="bangdingmima">重置密码后你就可以使用新密码登录了</view> 4 <view class="bangdingmima">重置密码后你就可以使用新密码登录了</view>
5 - <view class="setpassword flexone"> 5 + <view class="setpassword flextwo">
  6 + <view class="flexone inputk">
6 <view class="setpasswordleft">密码</view> 7 <view class="setpasswordleft">密码</view>
7 <view class="setpasswordright"> 8 <view class="setpasswordright">
8 - <input type="password" placeholder="6-16个字符以内,区分大小写" @input="enterfirstcode"> 9 + <input type="password" placeholder="6-16个字符以内,区分大小写" @input="enterfirstcode" v-if="passtrue">
  10 + <input type="text" placeholder="6-16个字符以内,区分大小写" @input="enterfirstcode" v-else>
9 </view> 11 </view>
10 </view> 12 </view>
11 - <view class="setpassword flexone"> 13 +
  14 + <view class="eye" @click="chosepassword">
  15 + <image src="../../static/closeeye.png" mode="" v-if="passtrue"></image>
  16 + <image src="../../static/openeye.png" mode="" v-else></image>
  17 + </view>
  18 +
  19 +
  20 + </view>
  21 + <view class="setpassword flextwo">
  22 + <view class="flexone inputk">
12 <view class="setpasswordleft">确认密码</view> 23 <view class="setpasswordleft">确认密码</view>
13 <view class="setpasswordright"> 24 <view class="setpasswordright">
14 - <input type="password" placeholder="请再次输入" @input="entersecondcode"> 25 + <input type="password" placeholder="请再次输入" @input="entersecondcode" v-if="passtruek">
  26 + <input type="text" placeholder="请再次输入" @input="entersecondcode" v-else>
15 </view> 27 </view>
16 </view> 28 </view>
  29 + <view class="eye" @click="chosepasswordk">
  30 + <image src="../../static/closeeye.png" mode="" v-if="passtruek"></image>
  31 + <image src="../../static/openeye.png" mode="" v-else></image>
  32 + </view>
  33 +
  34 + </view>
17 </view> 35 </view>
18 36
19 <view class="loginbtn finish" @click="finish">完成</view> 37 <view class="loginbtn finish" @click="finish">完成</view>
@@ -27,13 +45,21 @@ @@ -27,13 +45,21 @@
27 return { 45 return {
28 firstcode: '', 46 firstcode: '',
29 secondcode: '', 47 secondcode: '',
30 - phone: '' 48 + phone: '',
  49 + passtrue:true,
  50 + passtruek:true
31 } 51 }
32 }, 52 },
33 onLoad(options) { 53 onLoad(options) {
34 this.phone = options.phone 54 this.phone = options.phone
35 }, 55 },
36 methods: { 56 methods: {
  57 + chosepassword(){
  58 + this.passtrue=!this.passtrue
  59 + },
  60 + chosepasswordk(){
  61 + this.passtruek=!this.passtruek
  62 + },
37 enterfirstcode(e) { 63 enterfirstcode(e) {
38 this.firstcode = e.detail.value 64 this.firstcode = e.detail.value
39 }, 65 },
@@ -787,7 +787,7 @@ @@ -787,7 +787,7 @@
787 }) 787 })
788 return false 788 return false
789 } 789 }
790 - uni.setStorageSync("addressitem", ""); 790 + // uni.setStorageSync("addressitem", "");
791 uni.setStorageSync("couponitem", "") 791 uni.setStorageSync("couponitem", "")
792 var url = 'order/confirm_order'; 792 var url = 'order/confirm_order';
793 console.log('获取的参数', that.data) 793 console.log('获取的参数', that.data)
@@ -159,10 +159,7 @@ @@ -159,10 +159,7 @@
159 <image src="../../static/starredk.png" v-if="item.star>=5"></image> 159 <image src="../../static/starredk.png" v-if="item.star>=5"></image>
160 <image src="../../static/starred.png" v-else></image> 160 <image src="../../static/starred.png" v-else></image>
161 </view> 161 </view>
162 - <view class="staritem">  
163 - <image src="../../static/starredk.png" v-if="item.star>=6"></image>  
164 - <image src="../../static/starred.png" v-else></image>  
165 - </view> 162 +
166 </view> 163 </view>
167 164
168 </view> 165 </view>
@@ -65,7 +65,7 @@ @@ -65,7 +65,7 @@
65 <image src="../../static/kongxing.png" mode="" v-else></image> 65 <image src="../../static/kongxing.png" mode="" v-else></image>
66 </view> 66 </view>
67 </view> 67 </view>
68 - <view class="haoping">好评率{{item.probability}}</view> 68 + <view class="haoping">好评率{{item.probability}}%</view>
69 </view> 69 </view>
70 70
71 71
@@ -137,7 +137,7 @@ @@ -137,7 +137,7 @@
137 <view class="deliveryname">请输入抵扣积分</view> 137 <view class="deliveryname">请输入抵扣积分</view>
138 </view> --> 138 </view> -->
139 <view class="delivery flextwo markcontent" @click="selectcoupon"> 139 <view class="delivery flextwo markcontent" @click="selectcoupon">
140 - <view class="deliveryleft flexone"> 140 + <view class="deliveryleft flexone" @click.stop="couponrulek" :data-id="1">
141 <view class='jifen'>优惠劵</view> 141 <view class='jifen'>优惠劵</view>
142 <view class="jifenimg youimg"> 142 <view class="jifenimg youimg">
143 <image src="../../static/gantan.png" mode=""></image> 143 <image src="../../static/gantan.png" mode=""></image>
@@ -155,7 +155,7 @@ @@ -155,7 +155,7 @@
155 <view class='deliveryitemname'>积分抵扣</view> 155 <view class='deliveryitemname'>积分抵扣</view>
156 <view class='deliveryitemname moneyright'>¥2600.00</view> 156 <view class='deliveryitemname moneyright'>¥2600.00</view>
157 </view> --> 157 </view> -->
158 - <view class="deliveryitem flextwo"> 158 + <view class="deliveryitem flextwo" >
159 <view class='deliveryitemname'>优惠券</view> 159 <view class='deliveryitemname'>优惠券</view>
160 <view class='deliveryitemname moneyright'>¥{{goodinfo.data1.discounts}}</view> 160 <view class='deliveryitemname moneyright'>¥{{goodinfo.data1.discounts}}</view>
161 </view> 161 </view>
@@ -216,7 +216,7 @@ @@ -216,7 +216,7 @@
216 </view> 216 </view>
217 </view> 217 </view>
218 <view class="delivery flextwo markcontent"> 218 <view class="delivery flextwo markcontent">
219 - <view class="deliveryleft flexone"> 219 + <view class="deliveryleft flexone" @click="couponrulek" :data-id="2">
220 <view class='jifen'>可用积分抵扣</view> 220 <view class='jifen'>可用积分抵扣</view>
221 <view class="jifenimg youimg"> 221 <view class="jifenimg youimg">
222 <image src="../../static/gantan.png" mode=""></image> 222 <image src="../../static/gantan.png" mode=""></image>
@@ -264,7 +264,6 @@ @@ -264,7 +264,6 @@
264 <view class="buyitem boxsizing flextwo" @click.stop="paytype" :data-id="1"> 264 <view class="buyitem boxsizing flextwo" @click.stop="paytype" :data-id="1">
265 <view class="buyitemleft flexone"> 265 <view class="buyitemleft flexone">
266 <view class="buyleftimg" > 266 <view class="buyleftimg" >
267 -  
268 <image src="../../static/weixin.png" mode=""></image> 267 <image src="../../static/weixin.png" mode=""></image>
269 </view> 268 </view>
270 <view class="buyitemname">微信支付</view> 269 <view class="buyitemname">微信支付</view>
@@ -321,7 +320,7 @@ @@ -321,7 +320,7 @@
321 <!-- 优惠券使用规则 --> 320 <!-- 优惠券使用规则 -->
322 <view class='register' v-if="couponrule"> 321 <view class='register' v-if="couponrule">
323 <view class="couponrule"> 322 <view class="couponrule">
324 - <view class='coupontitle'>优惠券使用规则</view> 323 + <view class='coupontitle'>{{title}}</view>
325 <view class="coupontext"> 324 <view class="coupontext">
326 Lorem ipsum dolor sit amet, consectetur adipiscing elit. 325 Lorem ipsum dolor sit amet, consectetur adipiscing elit.
327 Aenean euismod bibendum laoreet. Proin gravida dolor 326 Aenean euismod bibendum laoreet. Proin gravida dolor
@@ -392,7 +391,8 @@ @@ -392,7 +391,8 @@
392 order_id:'', 391 order_id:'',
393 //判断收货地址是否显示 392 //判断收货地址是否显示
394 postage_type3:'', 393 postage_type3:'',
395 - cartid:'' 394 + cartid:'',
  395 + title:'优惠券使用规则'
396 // data1 面坊 data2 积分 data3 店铺 396 // data1 面坊 data2 积分 data3 店铺
397 } 397 }
398 }, 398 },
@@ -418,6 +418,17 @@ @@ -418,6 +418,17 @@
418 }, 418 },
419 419
420 methods: { 420 methods: {
  421 + // 优惠券规则
  422 + couponrulek(e){
  423 + let id=e.currentTarget.dataset.id;
  424 + if(id==1){
  425 + this.title="优惠券使用规则"
  426 + }else{
  427 + this.title="积分使用规则"
  428 + }
  429 + console.log('99999')
  430 + this.couponrule=true
  431 + },
421 // 阻止购买弹层取消 432 // 阻止购买弹层取消
422 stopclickwrap(){ 433 stopclickwrap(){
423 434
1 1
2 var isReady=false;var onReadyCallbacks=[]; 2 var isReady=false;var onReadyCallbacks=[];
3 -var __uniConfig = {"pages":["pages/homepage/homepage","pages/homepage/choujiangrule","pages/login/loginindex","pages/guide/judge","pages/guide/guide","pages/nearshop/jiankong","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/homepage/choujiangrule","meta":{},"window":{"navigationBarTitleText":"活动规则","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"path":"/pages/login/loginindex","meta":{},"window":{"navigationBarTitleText":"","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"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/nearshop/jiankong","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/homepage/choujiangrule","pages/guide/judge","pages/guide/guide","pages/nearshop/jiankong","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/homepage/choujiangrule","meta":{},"window":{"navigationBarTitleText":"活动规则","navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black"}},{"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/nearshop/jiankong","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"}}];
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}}}});
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":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"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","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":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"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"}}