作者 lihongjuan

1

@@ -5,6 +5,9 @@ @@ -5,6 +5,9 @@
5 font-size: 0; 5 font-size: 0;
6 margin: 88rpx auto 0; 6 margin: 88rpx auto 0;
7 } 7 }
  8 +.logo image{
  9 + border-radius: 50%;
  10 +}
8 11
9 12
10 .loginbox{ 13 .loginbox{
@@ -78,6 +78,38 @@ @@ -78,6 +78,38 @@
78 "UniversalLinks" : "" 78 "UniversalLinks" : ""
79 } 79 }
80 } 80 }
  81 + },
  82 + "icons" : {
  83 + "android" : {
  84 + "hdpi" : "unpackage/res/icons/72x72.png",
  85 + "xhdpi" : "unpackage/res/icons/96x96.png",
  86 + "xxhdpi" : "unpackage/res/icons/144x144.png",
  87 + "xxxhdpi" : "unpackage/res/icons/192x192.png"
  88 + },
  89 + "ios" : {
  90 + "appstore" : "unpackage/res/icons/1024x1024.png",
  91 + "ipad" : {
  92 + "app" : "unpackage/res/icons/76x76.png",
  93 + "app@2x" : "unpackage/res/icons/152x152.png",
  94 + "notification" : "unpackage/res/icons/20x20.png",
  95 + "notification@2x" : "unpackage/res/icons/40x40.png",
  96 + "proapp@2x" : "unpackage/res/icons/167x167.png",
  97 + "settings" : "unpackage/res/icons/29x29.png",
  98 + "settings@2x" : "unpackage/res/icons/58x58.png",
  99 + "spotlight" : "unpackage/res/icons/40x40.png",
  100 + "spotlight@2x" : "unpackage/res/icons/80x80.png"
  101 + },
  102 + "iphone" : {
  103 + "app@2x" : "unpackage/res/icons/120x120.png",
  104 + "app@3x" : "unpackage/res/icons/180x180.png",
  105 + "notification@2x" : "unpackage/res/icons/40x40.png",
  106 + "notification@3x" : "unpackage/res/icons/60x60.png",
  107 + "settings@2x" : "unpackage/res/icons/58x58.png",
  108 + "settings@3x" : "unpackage/res/icons/87x87.png",
  109 + "spotlight@2x" : "unpackage/res/icons/80x80.png",
  110 + "spotlight@3x" : "unpackage/res/icons/120x120.png"
  111 + }
  112 + }
81 } 113 }
82 }, 114 },
83 "nativePlugins" : { 115 "nativePlugins" : {
@@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
10 } 10 }
11 }, 11 },
12 12
  13 +
13 { 14 {
14 "path": "pages/homepage/homepage", 15 "path": "pages/homepage/homepage",
15 "style": { 16 "style": {
@@ -23,7 +24,6 @@ @@ -23,7 +24,6 @@
23 } 24 }
24 }, 25 },
25 26
26 -  
27 { 27 {
28 "path": "pages/guide/judge", 28 "path": "pages/guide/judge",
29 "style": { 29 "style": {
@@ -50,7 +50,14 @@ @@ -50,7 +50,14 @@
50 }, 50 },
51 51
52 52
53 - 53 + {
  54 + "path": "pages/nearshop/jiankong",
  55 + "style": {
  56 + "navigationBarTitleText": "",
  57 + "navigationBarBackgroundColor": "#fff",
  58 + "navigationBarTextStyle": "black"
  59 + }
  60 + },
54 { 61 {
55 "path": "pages/usercenter/cardrenzheng", 62 "path": "pages/usercenter/cardrenzheng",
56 "style": { 63 "style": {
1 <template> 1 <template>
2 <view class="content"> 2 <view class="content">
3 <view class="logo"> 3 <view class="logo">
4 - <image src="../../static/choujiang.png" mode=""></image> 4 + <image src="../../static/logok.png" mode=""></image>
5 </view> 5 </view>
6 <view class="loginbox"> 6 <view class="loginbox">
7 <view class="loginboxitem flex"> 7 <view class="loginboxitem flex">
@@ -104,14 +104,16 @@ @@ -104,14 +104,16 @@
104 <rich-text :nodes="goodtail.content"></rich-text> 104 <rich-text :nodes="goodtail.content"></rich-text>
105 </view> 105 </view>
106 <view class="goodcomment" v-else> 106 <view class="goodcomment" v-else>
107 - <view class="nodata" v-if="commentlist.length==0">暂无评论</view>  
108 - <view v-else> 107 +
  108 +
109 <view class="goodcommentop flexone"> 109 <view class="goodcommentop flexone">
110 - <view class="topitem" @click="commenttype" :data-id="0">全部({{total}})</view>  
111 - <view class="topitem" @click="commenttype" :data-id="1">好评({{total1}})</view>  
112 - <view class="topitem" @click="commenttype" :data-id="2">中评({{total2}})</view>  
113 - <view class="topitem" @click="commenttype" :data-id="3">差评({{total3}})</view> 110 + <view class="topitem " :class="star_type==0?'topitemactive':''" @click="commenttype" :data-id="0">全部({{total}})</view>
  111 + <view class="topitem" :class="star_type==1?'topitemactive':''" @click="commenttype" :data-id="1">好评({{total1}})</view>
  112 + <view class="topitem" :class="star_type==2?'topitemactive':''" @click="commenttype" :data-id="2">中评({{total2}})</view>
  113 + <view class="topitem" :class="star_type==3?'topitemactive':''" @click="commenttype" :data-id="3">差评({{total3}})</view>
114 </view> 114 </view>
  115 + <view class="nodata" v-if="commentlist.length==0">暂无评论</view>
  116 + <view v-else>
115 <view class="commentlist"> 117 <view class="commentlist">
116 <view class="jianintro photobox" bindtap="comdetail" v-for="(item,index) in commentlist" :key="index"> 118 <view class="jianintro photobox" bindtap="comdetail" v-for="(item,index) in commentlist" :key="index">
117 <view class="comtop flextwo"> 119 <view class="comtop flextwo">
@@ -126,22 +128,28 @@ @@ -126,22 +128,28 @@
126 </view> 128 </view>
127 <view class="star starone flexone"> 129 <view class="star starone flexone">
128 <view class="staritem"> 130 <view class="staritem">
129 - <image src="../../static/starredk.png"></image> 131 + <image src="../../static/starredk.png" v-if="item.star>=1"></image>
  132 + <image src="../../static/starred.png" v-else></image>
130 </view> 133 </view>
131 <view class="staritem"> 134 <view class="staritem">
132 - <image src="../../static/starredk.png"></image> 135 + <image src="../../static/starredk.png" v-if="item.star>=2"></image>
  136 + <image src="../../static/starred.png" v-else></image>
133 </view> 137 </view>
134 <view class="staritem"> 138 <view class="staritem">
135 - <image src="../../static/starredk.png"></image> 139 + <image src="../../static/starredk.png" v-if="item.star>=3"></image>
  140 + <image src="../../static/starred.png" v-else></image>
136 </view> 141 </view>
137 <view class="staritem"> 142 <view class="staritem">
138 - <image src="../../static/starredk.png"></image> 143 + <image src="../../static/starredk.png" v-if="item.star>=4"></image>
  144 + <image src="../../static/starred.png" v-else></image>
139 </view> 145 </view>
140 <view class="staritem"> 146 <view class="staritem">
141 - <image src="../../static/starredk.png"></image> 147 + <image src="../../static/starredk.png" v-if="item.star>=5"></image>
  148 + <image src="../../static/starred.png" v-else></image>
142 </view> 149 </view>
143 <view class="staritem"> 150 <view class="staritem">
144 - <image src="../../static/starred.png"></image> 151 + <image src="../../static/starredk.png" v-if="item.star>=6"></image>
  152 + <image src="../../static/starred.png" v-else></image>
145 </view> 153 </view>
146 </view> 154 </view>
147 155
@@ -164,7 +172,6 @@ @@ -164,7 +172,6 @@
164 </view> --> 172 </view> -->
165 </view> 173 </view>
166 </view> 174 </view>
167 -  
168 </view> 175 </view>
169 </view> 176 </view>
170 177
@@ -273,20 +280,20 @@ @@ -273,20 +280,20 @@
273 star_type: '', 280 star_type: '',
274 // 评论列表 281 // 评论列表
275 commentlist: [], 282 commentlist: [],
276 - total:0,  
277 - total1:0,  
278 - total2:0,  
279 - total3:0,  
280 - carttotal:0,  
281 - score_goods_spec:'',  
282 - data:[],  
283 - status:'',  
284 - days:'',  
285 - hours:'',  
286 - minutes:'',  
287 - seconds:'', 283 + total: 0,
  284 + total1: 0,
  285 + total2: 0,
  286 + total3: 0,
  287 + carttotal: 0,
  288 + score_goods_spec: '',
  289 + data: [],
  290 + status: '',
  291 + days: '',
  292 + hours: '',
  293 + minutes: '',
  294 + seconds: '',
288 // 秒杀商品的设置 295 // 秒杀商品的设置
289 - timestatus:'' 296 + timestatus: ''
290 297
291 } 298 }
292 }, 299 },
@@ -294,12 +301,12 @@ @@ -294,12 +301,12 @@
294 console.log(options) 301 console.log(options)
295 this.goodid = options.id, 302 this.goodid = options.id,
296 this.type = options.type; 303 this.type = options.type;
297 - console.log('详情类型',this.type) 304 + console.log('详情类型', this.type)
298 if (this.type == 1) { 305 if (this.type == 1) {
299 this.getgoodtail(); 306 this.getgoodtail();
300 } else if (this.type == 2) { 307 } else if (this.type == 2) {
301 this.getjifengoodtail(); 308 this.getjifengoodtail();
302 - } else if(this.type==3) { 309 + } else if (this.type == 3) {
303 console.log(88877665) 310 console.log(88877665)
304 this.getshopgoodtail() 311 this.getshopgoodtail()
305 } 312 }
@@ -311,9 +318,9 @@ @@ -311,9 +318,9 @@
311 }, 318 },
312 319
313 320
314 - onUnload(){ 321 + onUnload() {
315 uni.redirectTo({ 322 uni.redirectTo({
316 - url:'/pages/homepage/homepage' 323 + url: '/pages/homepage/homepage'
317 }) 324 })
318 }, 325 },
319 methods: { 326 methods: {
@@ -321,7 +328,7 @@ @@ -321,7 +328,7 @@
321 328
322 329
323 // 获取购物车气泡 330 // 获取购物车气泡
324 - getcartnum(){ 331 + getcartnum() {
325 let that = this; 332 let that = this;
326 var url = 'car/bubble'; 333 var url = 'car/bubble';
327 var params = { 334 var params = {
@@ -329,7 +336,7 @@ @@ -329,7 +336,7 @@
329 } 336 }
330 app.post(url, params).then((res) => { 337 app.post(url, params).then((res) => {
331 console.log(res); 338 console.log(res);
332 - this.carttotal=res.data.data.total; 339 + this.carttotal = res.data.data.total;
333 340
334 }).catch((err) => { 341 }).catch((err) => {
335 342
@@ -342,6 +349,9 @@ @@ -342,6 +349,9 @@
342 // 评论切换 349 // 评论切换
343 commenttype(e) { 350 commenttype(e) {
344 this.star_type = e.currentTarget.dataset.id; 351 this.star_type = e.currentTarget.dataset.id;
  352 + this.page = 1;
  353 + this.commentlist = [];
  354 + this.getcommentlist()
345 }, 355 },
346 // 顶部导航切换 356 // 顶部导航切换
347 navtap(e) { 357 navtap(e) {
@@ -372,14 +382,14 @@ @@ -372,14 +382,14 @@
372 page: that.page, 382 page: that.page,
373 pageNum: 10 383 pageNum: 10
374 } 384 }
375 - console.log('33478478',params) 385 + console.log('33478478', params)
376 app.post(url, params).then((res) => { 386 app.post(url, params).then((res) => {
377 - console.log('获取评论列表',res); 387 + console.log('获取评论列表', res);
378 that.commentlist = that.commentlist.concat(res.data.data.list); 388 that.commentlist = that.commentlist.concat(res.data.data.list);
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; 389 + that.total = res.data.data.total;
  390 + that.total1 = res.data.data.total1;
  391 + that.total2 = res.data.data.total2;
  392 + that.total3 = res.data.data.total3;
383 393
384 394
385 }).catch((err) => { 395 }).catch((err) => {
@@ -388,17 +398,17 @@ @@ -388,17 +398,17 @@
388 }) 398 })
389 }, 399 },
390 // 预览图片 400 // 预览图片
391 - previewimg(index,indexk){ 401 + previewimg(index, indexk) {
  402 + let that = this;
392 uni.previewImage({ 403 uni.previewImage({
393 current: that.commentlist[index].images[indexk], 404 current: that.commentlist[index].images[indexk],
394 urls: that.commentlist[index].images, 405 urls: that.commentlist[index].images,
395 - success: function (res) { },  
396 - fail: function (res) { },  
397 - complete: function (res) { }, 406 + success: function(res) {},
  407 + fail: function(res) {},
  408 + complete: function(res) {},
398 }) 409 })
399 - 微信程序  
400 - },  
401 410
  411 + },
402 // 数量加减 412 // 数量加减
403 reducenum() { 413 reducenum() {
404 this.cartnumber = this.cartnumber - 1; 414 this.cartnumber = this.cartnumber - 1;
@@ -418,8 +428,6 @@ @@ -418,8 +428,6 @@
418 console.log(this.cartnumber) 428 console.log(this.cartnumber)
419 this.cartnumber = this.cartnumber 429 this.cartnumber = this.cartnumber
420 }, 430 },
421 -  
422 -  
423 //获取面坊商品详情 431 //获取面坊商品详情
424 getgoodtail() { 432 getgoodtail() {
425 let that = this; 433 let that = this;
@@ -427,12 +435,12 @@ @@ -427,12 +435,12 @@
427 var params = { 435 var params = {
428 flour_goods_id: that.goodid, 436 flour_goods_id: that.goodid,
429 } 437 }
430 - console.log('面访商品id',params) 438 + console.log('面访商品id', params)
431 app.post(url, params).then((res) => { 439 app.post(url, params).then((res) => {
432 console.log(res); 440 console.log(res);
433 that.goodtail = res.data.data; 441 that.goodtail = res.data.data;
434 - that.status=res.data.data.status;  
435 - if(that.status==1){ 442 + that.status = res.data.data.status;
  443 + if (that.status == 1) {
436 that.getTime() 444 that.getTime()
437 } 445 }
438 446
@@ -443,7 +451,7 @@ @@ -443,7 +451,7 @@
443 }) 451 })
444 }, 452 },
445 // 获取倒计时 453 // 获取倒计时
446 - getTime(){ 454 + getTime() {
447 let that = this; 455 let that = this;
448 var url = 'flour_goods/seckill_setting'; 456 var url = 'flour_goods/seckill_setting';
449 457
@@ -451,22 +459,22 @@ @@ -451,22 +459,22 @@
451 459
452 } 460 }
453 console.log(params) 461 console.log(params)
454 - app.post(url,params, "post").then((res) => { 462 + app.post(url, params, "post").then((res) => {
455 console.log(res); 463 console.log(res);
456 - that.timestatus=res.data.data.status 464 + that.timestatus = res.data.data.status
457 let now_time = parseInt(new Date().getTime()) 465 let now_time = parseInt(new Date().getTime())
458 - now_time=parseInt(now_time/1000);  
459 - let remaintime=res.data.data.endtime-now_time; 466 + now_time = parseInt(now_time / 1000);
  467 + let remaintime = res.data.data.endtime - now_time;
460 let number = remaintime; 468 let number = remaintime;
461 // 时间戳处理 469 // 时间戳处理
462 var totalSecond = number; 470 var totalSecond = number;
463 console.log(totalSecond); 471 console.log(totalSecond);
464 - var interval = setInterval(function () { 472 + var interval = setInterval(function() {
465 // 秒数 473 // 秒数
466 var second = totalSecond; 474 var second = totalSecond;
467 475
468 // 天数位 476 // 天数位
469 - var day = Math.floor(second/3600/24); 477 + var day = Math.floor(second / 3600 / 24);
470 var dayStr = day.toString(); 478 var dayStr = day.toString();
471 if (dayStr.length == 1) dayStr = '0' + dayStr; 479 if (dayStr.length == 1) dayStr = '0' + dayStr;
472 // 小时位 480 // 小时位
@@ -482,10 +490,10 @@ @@ -482,10 +490,10 @@
482 var secStr = sec.toString(); 490 var secStr = sec.toString();
483 if (secStr.length == 1) secStr = '0' + secStr; 491 if (secStr.length == 1) secStr = '0' + secStr;
484 492
485 - that.days=dayStr;  
486 - that.hours=hrStr;  
487 - that.minutes=minStr;  
488 - that.seconds=secStr; 493 + that.days = dayStr;
  494 + that.hours = hrStr;
  495 + that.minutes = minStr;
  496 + that.seconds = secStr;
489 totalSecond--; 497 totalSecond--;
490 if (totalSecond <= 0) { 498 if (totalSecond <= 0) {
491 clearInterval(interval); 499 clearInterval(interval);
@@ -495,10 +503,10 @@ @@ -495,10 +503,10 @@
495 // }); 503 // });
496 // 倒计时结束 504 // 倒计时结束
497 //that.countDown(); 505 //that.countDown();
498 - that.days='00';  
499 - that.hours='00';  
500 - that.minutes='00';  
501 - that.seconds='00'; 506 + that.days = '00';
  507 + that.hours = '00';
  508 + that.minutes = '00';
  509 + that.seconds = '00';
502 } 510 }
503 }.bind(this), 1000); 511 }.bind(this), 1000);
504 512
@@ -518,7 +526,7 @@ @@ -518,7 +526,7 @@
518 app.post(url, params).then((res) => { 526 app.post(url, params).then((res) => {
519 console.log(res); 527 console.log(res);
520 that.goodtail = res.data.data; 528 that.goodtail = res.data.data;
521 - that.score_goods_spec=res.data.data.score_goods_spec 529 + that.score_goods_spec = res.data.data.score_goods_spec
522 console.log(that.goodtail) 530 console.log(that.goodtail)
523 531
524 }).catch((err) => { 532 }).catch((err) => {
@@ -547,11 +555,11 @@ @@ -547,11 +555,11 @@
547 this.shuwrap = true; 555 this.shuwrap = true;
548 //type 1店铺商品 2 积分商品 3 面坊商品 556 //type 1店铺商品 2 积分商品 3 面坊商品
549 557
550 - if(this.type==3){ 558 + if (this.type == 3) {
551 this.getshopsepc() 559 this.getshopsepc()
552 - }else if(this.type==2){ 560 + } else if (this.type == 2) {
553 this.getspecs(); 561 this.getspecs();
554 - }else if(this.type==1){ 562 + } else if (this.type == 1) {
555 this.getmianfangspec() 563 this.getmianfangspec()
556 } 564 }
557 565
@@ -561,17 +569,17 @@ @@ -561,17 +569,17 @@
561 buynow() { 569 buynow() {
562 this.shuwrap = true; 570 this.shuwrap = true;
563 this.addtype = 2; 571 this.addtype = 2;
564 - if(this.type==3){ 572 + if (this.type == 3) {
565 this.getshopsepc() 573 this.getshopsepc()
566 - }else if(this.type==2){ 574 + } else if (this.type == 2) {
567 this.getspecs(); 575 this.getspecs();
568 - }else if(this.type==1){ 576 + } else if (this.type == 1) {
569 this.getmianfangspec() 577 this.getmianfangspec()
570 } 578 }
571 579
572 }, 580 },
573 // 获取店铺商品规格 581 // 获取店铺商品规格
574 - getshopsepc(){ 582 + getshopsepc() {
575 let that = this; 583 let that = this;
576 var url = 'store_goods/get_spec_sku1'; 584 var url = 'store_goods/get_spec_sku1';
577 var params = { 585 var params = {
@@ -629,7 +637,7 @@ @@ -629,7 +637,7 @@
629 }, 637 },
630 638
631 //获取面坊商品规格 639 //获取面坊商品规格
632 - getmianfangspec(){ 640 + getmianfangspec() {
633 let that = this; 641 let that = this;
634 var url = 'flour_goods/get_spec_sku1'; 642 var url = 'flour_goods/get_spec_sku1';
635 var params = { 643 var params = {
@@ -668,17 +676,17 @@ @@ -668,17 +676,17 @@
668 // console.log(this.specarr[parindex].spec_value[childindex].sel) 676 // console.log(this.specarr[parindex].spec_value[childindex].sel)
669 console.log(JSON.stringify(this.specarr)) 677 console.log(JSON.stringify(this.specarr))
670 678
671 - if(this.type==3){ 679 + if (this.type == 3) {
672 this.changeshopsepc() 680 this.changeshopsepc()
673 - }else if(this.type==2){ 681 + } else if (this.type == 2) {
674 this.changspec(); 682 this.changspec();
675 - }else if(this.type==1){ 683 + } else if (this.type == 1) {
676 this.changemianspec() 684 this.changemianspec()
677 } 685 }
678 }, 686 },
679 687
680 // 更改店铺商品图片和图片规格 688 // 更改店铺商品图片和图片规格
681 - changeshopsepc(){ 689 + changeshopsepc() {
682 let that = this; 690 let that = this;
683 let newspec_sku_id = [] 691 let newspec_sku_id = []
684 692
@@ -736,7 +744,7 @@ @@ -736,7 +744,7 @@
736 }) 744 })
737 }, 745 },
738 //更换面坊商品商品的图片和价格 746 //更换面坊商品商品的图片和价格
739 - changemianspec(){ 747 + changemianspec() {
740 let that = this; 748 let that = this;
741 let newspec_sku_id = [] 749 let newspec_sku_id = []
742 750
@@ -766,15 +774,15 @@ @@ -766,15 +774,15 @@
766 }, 774 },
767 775
768 sure() { 776 sure() {
769 - let token=uni.getStorageSync("token");  
770 - if(token==''){  
771 - let url="/pages/nearshop/goodtail?id="+this.goodid+'&type='+this.type; 777 + let token = uni.getStorageSync("token");
  778 + if (token == '') {
  779 + let url = "/pages/nearshop/goodtail?id=" + this.goodid + '&type=' + this.type;
772 console.log(url) 780 console.log(url)
773 - uni.setStorageSync("url",url) 781 + uni.setStorageSync("url", url)
774 uni.redirectTo({ 782 uni.redirectTo({
775 - url:'/pages/login/loginindex?type=1' 783 + url: '/pages/login/loginindex?type=1'
776 }) 784 })
777 - }else{ 785 + } else {
778 if (this.addtype == 1) { 786 if (this.addtype == 1) {
779 this.addcartk(); 787 this.addcartk();
780 } else { 788 } else {
@@ -799,7 +807,7 @@ @@ -799,7 +807,7 @@
799 spec_sku_id: that.spec_sku_id.join("_"), 807 spec_sku_id: that.spec_sku_id.join("_"),
800 number: that.cartnumber, 808 number: that.cartnumber,
801 } 809 }
802 - console.log('加入购物车的参数',params) 810 + console.log('加入购物车的参数', params)
803 app.post(url, params).then((res) => { 811 app.post(url, params).then((res) => {
804 console.log(res); 812 console.log(res);
805 uni.showToast({ 813 uni.showToast({
@@ -848,16 +856,16 @@ @@ -848,16 +856,16 @@
848 // }, 856 // },
849 buynowk() { 857 buynowk() {
850 let that = this; 858 let that = this;
851 - uni.setStorageSync("addressitem","");  
852 - uni.setStorageSync("couponitem","") 859 + uni.setStorageSync("addressitem", "");
  860 + uni.setStorageSync("couponitem", "")
853 var url = 'order/confirm_order'; 861 var url = 'order/confirm_order';
854 - let obj={}  
855 - obj.type=that.type;  
856 - obj.goods_id=that.goodtail.id;  
857 - obj.spec_sku_id=that.spec_sku_id.join("_");  
858 - obj.number=that.cartnumber; 862 + let obj = {}
  863 + obj.type = that.type;
  864 + obj.goods_id = that.goodtail.id;
  865 + obj.spec_sku_id = that.spec_sku_id.join("_");
  866 + obj.number = that.cartnumber;
859 console.log(obj) 867 console.log(obj)
860 - var data=[]; 868 + var data = [];
861 data.push(obj) 869 data.push(obj)
862 console.log('获取的参数', data) 870 console.log('获取的参数', data)
863 var params = { 871 var params = {
@@ -871,13 +879,13 @@ @@ -871,13 +879,13 @@
871 let seldata = JSON.stringify(data) 879 let seldata = JSON.stringify(data)
872 uni.setStorageSync("goodinfo", res.data.data); 880 uni.setStorageSync("goodinfo", res.data.data);
873 uni.navigateTo({ 881 uni.navigateTo({
874 - url: '/pages/nearshop/sureorder?seldata='+seldata 882 + url: '/pages/nearshop/sureorder?seldata=' + seldata
875 }) 883 })
876 }).catch((err) => { 884 }).catch((err) => {
877 console.log(err); 885 console.log(err);
878 uni.showToast({ 886 uni.showToast({
879 - title:err.msg,  
880 - icon:"none" 887 + title: err.msg,
  888 + icon: "none"
881 }) 889 })
882 }) 890 })
883 }, 891 },
@@ -888,7 +896,10 @@ @@ -888,7 +896,10 @@
888 <style> 896 <style>
889 @import url('../../base/nearshop'); 897 @import url('../../base/nearshop');
890 @import url('../../base/homepage'); 898 @import url('../../base/homepage');
891 - 899 + .goodetailbox{
  900 + color:#3D454C;
  901 + font-size:24rpx;
  902 + }
892 .huiyuanprice { 903 .huiyuanprice {
893 margin-left: 28rpx 904 margin-left: 28rpx
894 } 905 }
@@ -897,21 +908,29 @@ @@ -897,21 +908,29 @@
897 padding: 32rpx 126rpx; 908 padding: 32rpx 126rpx;
898 box-sizing: border-box; 909 box-sizing: border-box;
899 } 910 }
900 - .miaoduleft{  
901 - width:260rpx!important; 911 +
  912 + .miaoduleft {
  913 + width: 260rpx !important;
902 914
903 } 915 }
904 - .miaotiao{ 916 +
  917 + .miaotiao {
905 position: relative; 918 position: relative;
906 } 919 }
907 - .qiang{  
908 - width:200rpx;  
909 - display:block; 920 +
  921 + .qiang {
  922 + width: 200rpx;
  923 + display: block;
910 position: absolute; 924 position: absolute;
911 - left:0rpx;  
912 - top:0; 925 + left: 0rpx;
  926 + top: 0;
913 text-align: left; 927 text-align: left;
914 padding-left: 10rpx; 928 padding-left: 10rpx;
915 box-sizing: border-box; 929 box-sizing: border-box;
916 } 930 }
  931 +
  932 + .topitemactive {
  933 + border: 1rpx solid #C29445;
  934 + color: #C29445;
  935 + }
917 </style> 936 </style>
  1 +<template>
  2 + <view class="container">
  3 + <web-view :webview-styles="webviewStyles" :src="src"></web-view>
  4 + </view>
  5 +</template>
  6 +
  7 +<script>
  8 + import app from "../../App.vue";
  9 + export default {
  10 + data() {
  11 + return {
  12 + webviewStyles: {
  13 + progress: {
  14 + color: '#fff'
  15 + }
  16 + }
  17 + }
  18 + },
  19 + onLoad(options) {
  20 + this.src = options.src
  21 +
  22 +
  23 + },
  24 + methods: {
  25 +
  26 +
  27 + }
  28 +
  29 + }
  30 +</script>
  31 +
  32 +<style>
  33 +</style>
@@ -31,8 +31,8 @@ @@ -31,8 +31,8 @@
31 </view> 31 </view>
32 </view> 32 </view>
33 33
34 - <view class="detailgood boxsizing flexone">  
35 - <view class="detailgooditem"> 34 + <view class="detailgood boxsizing flexone" v-if="shexianglist.length!=0">
  35 + <view class="detailgooditem" v-for="(item,index) in shexianglist" :key="index" @click="gojiankong(item)">
36 <image src="../../static/shopdetailtop.png" mode=""></image> 36 <image src="../../static/shopdetailtop.png" mode=""></image>
37 <view class="goodbot flextwo boxsizing"> 37 <view class="goodbot flextwo boxsizing">
38 <view class="goodbotleft"> 38 <view class="goodbotleft">
@@ -43,7 +43,7 @@ @@ -43,7 +43,7 @@
43 </view> 43 </view>
44 </view> 44 </view>
45 </view> 45 </view>
46 - <view class="detailgooditem"> 46 + <!-- <view class="detailgooditem">
47 <image src="../../static/shopdetailtop.png" mode=""></image> 47 <image src="../../static/shopdetailtop.png" mode=""></image>
48 <view class="goodbot flextwo boxsizing"> 48 <view class="goodbot flextwo boxsizing">
49 <view class="goodbotleft"> 49 <view class="goodbotleft">
@@ -76,6 +76,8 @@ @@ -76,6 +76,8 @@
76 </view> 76 </view>
77 </view> 77 </view>
78 </view> 78 </view>
  79 +
  80 + -->
79 </view> 81 </view>
80 <view class="addressbox boxsizing"> 82 <view class="addressbox boxsizing">
81 <view class="addressname">{{shopdetail.name}}</view> 83 <view class="addressname">{{shopdetail.name}}</view>
@@ -177,7 +179,8 @@ @@ -177,7 +179,8 @@
177 order:'', 179 order:'',
178 page:1, 180 page:1,
179 score_category_id:'', 181 score_category_id:'',
180 - goodlist:[] 182 + goodlist:[],
  183 + shexianglist:[]
181 } 184 }
182 }, 185 },
183 onLoad(options) { 186 onLoad(options) {
@@ -187,12 +190,38 @@ @@ -187,12 +190,38 @@
187 // 获取店铺详情 190 // 获取店铺详情
188 this.getshopdetail(); 191 this.getshopdetail();
189 // 获取店铺列表 192 // 获取店铺列表
190 - this.getgoodlist() 193 + this.getgoodlist();
  194 + // 获取监控列表
  195 + this.getjiankonglist()
191 196
192 197
193 198
194 }, 199 },
195 methods: { 200 methods: {
  201 + //获取监控列表
  202 + getjiankonglist(){
  203 + let that = this;
  204 + var url = 'store/get_store_camera';
  205 + var params = {
  206 + store_id: that.store_id,
  207 +
  208 + }
  209 + console.log('参数', params)
  210 + app.post(url, params, "post").then((res) => {
  211 + console.log(res);
  212 + that.shexianglist=res.data.data
  213 +
  214 + }).catch((err) => {
  215 + console.log(err)
  216 +
  217 + })
  218 + },
  219 + // 去监控页面
  220 + gojiankong(item){
  221 + uni.navigateTo({
  222 + url:"/pages/nearshop/jiankong?src="+item.url
  223 + })
  224 + },
196 // 拨打电话 225 // 拨打电话
197 phone(item){ 226 phone(item){
198 uni.makePhoneCall({ 227 uni.makePhoneCall({
@@ -633,17 +633,18 @@ @@ -633,17 +633,18 @@
633 }else if(that.pay_type == 1){ 633 }else if(that.pay_type == 1){
634 console.log(JSON.stringify(res.data.data.result)); 634 console.log(JSON.stringify(res.data.data.result));
635 let result=res.data.data.result; 635 let result=res.data.data.result;
636 - let obj={};  
637 - obj.appid=result.appid;  
638 - obj.partnerid=result.mch_id;  
639 - obj.prepayid=result.prepay_id;  
640 - obj.timestamp=result.timestamp;  
641 - obj.noncestr=result.nonce_str;  
642 - obj.package='Sign=WXPay';  
643 - obj.sign=result.sign;  
644 - console.log(JSON.stringify(obj));  
645 - var str = JSON.stringify(obj);  
646 - console.log(str) 636 + console.log(JSON.stringify(result))
  637 + // let obj={};
  638 + // obj.appid=result.appid;
  639 + // obj.partnerid=result.mch_id;
  640 + // obj.prepayid=result.prepay_id;
  641 + // obj.timestamp=result.timestamp;
  642 + // obj.noncestr=result.nonce_str;
  643 + // obj.package='Sign=WXPay';
  644 + // obj.sign=result.sign;
  645 + // console.log(JSON.stringify(obj));
  646 + // var str = JSON.stringify(obj);
  647 + // console.log(str)
647 648
648 // let pay_data= { 649 // let pay_data= {
649 // "appid": "wx24f90adc1d2f4f3d", 650 // "appid": "wx24f90adc1d2f4f3d",
@@ -664,7 +665,7 @@ @@ -664,7 +665,7 @@
664 // 微信支付 665 // 微信支付
665 uni.requestPayment({ 666 uni.requestPayment({
666 provider: 'wxpay', 667 provider: 'wxpay',
667 - orderInfo: str, //微信、支付宝订单数据 668 + orderInfo: JSON.stringify(result), //微信、支付宝订单数据
668 success: function (res) { 669 success: function (res) {
669 console.log('success:' + JSON.stringify(res)); 670 console.log('success:' + JSON.stringify(res));
670 if(res.errMsg == 'requestPayment:ok') { 671 if(res.errMsg == 'requestPayment:ok') {
1 1
2 var isReady=false;var onReadyCallbacks=[]; 2 var isReady=false;var onReadyCallbacks=[];
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"}}]; 3 +var __uniConfig = {"pages":["pages/login/loginindex","pages/homepage/homepage","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/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":{"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"}}  
  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"}}