作者 lihongjuan

1

... ... @@ -5,6 +5,9 @@
font-size: 0;
margin: 88rpx auto 0;
}
.logo image{
border-radius: 50%;
}
.loginbox{
... ...
... ... @@ -78,6 +78,38 @@
"UniversalLinks" : ""
}
}
},
"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"
}
}
}
},
"nativePlugins" : {
... ...
... ... @@ -10,6 +10,7 @@
}
},
{
"path": "pages/homepage/homepage",
"style": {
... ... @@ -23,7 +24,6 @@
}
},
{
"path": "pages/guide/judge",
"style": {
... ... @@ -48,9 +48,16 @@
}
}
},
{
"path": "pages/nearshop/jiankong",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/usercenter/cardrenzheng",
"style": {
... ... @@ -59,7 +66,7 @@
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/homepage/map",
"style": {
... ... @@ -76,8 +83,8 @@
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/usercenter/fenxiaomyteam",
"style": {
... ... @@ -118,8 +125,8 @@
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/nearshop/allprovince",
... ... @@ -723,7 +730,7 @@
"iconPath": "../../static/index.png",
"selectedIconPath": "../../static/indexactive.png",
"text": "首页"
}, {
"pagePath": "pages/nearshop/nearshop",
"iconPath": "../../static/nearshop.png",
... ... @@ -742,10 +749,10 @@
"selectedIconPath": "../../static/useractive.png",
"text": "个人中心"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
... ...
<template>
<view class="content">
<view class="logo">
<image src="../../static/choujiang.png" mode=""></image>
<image src="../../static/logok.png" mode=""></image>
</view>
<view class="loginbox">
<view class="loginboxitem flex">
... ...
<template>
<view class="content">
<view class="goodtailtop">
<image :src="goodtail.image" mode=""></image>
</view>
... ... @@ -38,7 +38,7 @@
<view class="miaoduleft">
<view class="miaotiao" :style="{width:goodtail.percentage+'%'}">
<text class="qiang">已抢购{{goodtail.percentage}}%</text>
</view>
</view>
<view class='miaobox' v-if="timestatus==2">活动未开始</view>
... ... @@ -104,14 +104,16 @@
<rich-text :nodes="goodtail.content"></rich-text>
</view>
<view class="goodcomment" v-else>
<view class="goodcommentop flexone">
<view class="topitem " :class="star_type==0?'topitemactive':''" @click="commenttype" :data-id="0">全部({{total}})</view>
<view class="topitem" :class="star_type==1?'topitemactive':''" @click="commenttype" :data-id="1">好评({{total1}})</view>
<view class="topitem" :class="star_type==2?'topitemactive':''" @click="commenttype" :data-id="2">中评({{total2}})</view>
<view class="topitem" :class="star_type==3?'topitemactive':''" @click="commenttype" :data-id="3">差评({{total3}})</view>
</view>
<view class="nodata" v-if="commentlist.length==0">暂无评论</view>
<view v-else>
<view class="goodcommentop flexone">
<view class="topitem" @click="commenttype" :data-id="0">全部({{total}})</view>
<view class="topitem" @click="commenttype" :data-id="1">好评({{total1}})</view>
<view class="topitem" @click="commenttype" :data-id="2">中评({{total2}})</view>
<view class="topitem" @click="commenttype" :data-id="3">差评({{total3}})</view>
</view>
<view class="commentlist">
<view class="jianintro photobox" bindtap="comdetail" v-for="(item,index) in commentlist" :key="index">
<view class="comtop flextwo">
... ... @@ -126,25 +128,31 @@
</view>
<view class="star starone flexone">
<view class="staritem">
<image src="../../static/starredk.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=1"></image>
<image src="../../static/starred.png" v-else></image>
</view>
<view class="staritem">
<image src="../../static/starredk.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=2"></image>
<image src="../../static/starred.png" v-else></image>
</view>
<view class="staritem">
<image src="../../static/starredk.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=3"></image>
<image src="../../static/starred.png" v-else></image>
</view>
<view class="staritem">
<image src="../../static/starredk.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=4"></image>
<image src="../../static/starred.png" v-else></image>
</view>
<view class="staritem">
<image src="../../static/starredk.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=5"></image>
<image src="../../static/starred.png" v-else></image>
</view>
<view class="staritem">
<image src="../../static/starred.png"></image>
<image src="../../static/starredk.png" v-if="item.star>=6"></image>
<image src="../../static/starred.png" v-else></image>
</view>
</view>
</view>
</view>
</view>
... ... @@ -164,10 +172,9 @@
</view> -->
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 底部购物车 -->
... ... @@ -273,33 +280,33 @@
star_type: '',
// 评论列表
commentlist: [],
total:0,
total1:0,
total2:0,
total3:0,
carttotal:0,
score_goods_spec:'',
data:[],
status:'',
days:'',
hours:'',
minutes:'',
seconds:'',
total: 0,
total1: 0,
total2: 0,
total3: 0,
carttotal: 0,
score_goods_spec: '',
data: [],
status: '',
days: '',
hours: '',
minutes: '',
seconds: '',
// 秒杀商品的设置
timestatus:''
timestatus: ''
}
},
onLoad(options) {
console.log(options)
this.goodid = options.id,
this.type = options.type;
console.log('详情类型',this.type)
this.type = options.type;
console.log('详情类型', this.type)
if (this.type == 1) {
this.getgoodtail();
} else if (this.type == 2) {
this.getjifengoodtail();
} else if(this.type==3) {
} else if (this.type == 3) {
console.log(88877665)
this.getshopgoodtail()
}
... ... @@ -309,39 +316,42 @@
this.getcommentlist()
},
onUnload(){
onUnload() {
uni.redirectTo({
url:'/pages/homepage/homepage'
url: '/pages/homepage/homepage'
})
},
methods: {
// 获取购物车气泡
getcartnum(){
getcartnum() {
let that = this;
var url = 'car/bubble';
var params = {
}
app.post(url, params).then((res) => {
console.log(res);
this.carttotal=res.data.data.total;
this.carttotal = res.data.data.total;
}).catch((err) => {
})
},
hideshu() {
this.shuwrap = false
},
// 评论切换
commenttype(e) {
this.star_type = e.currentTarget.dataset.id;
this.page = 1;
this.commentlist = [];
this.getcommentlist()
},
// 顶部导航切换
navtap(e) {
... ... @@ -360,7 +370,7 @@
this.getcommentlist();
}
},
// 获取评论列表
getcommentlist() {
let that = this;
... ... @@ -372,33 +382,33 @@
page: that.page,
pageNum: 10
}
console.log('33478478',params)
console.log('33478478', params)
app.post(url, params).then((res) => {
console.log('获取评论列表',res);
console.log('获取评论列表', res);
that.commentlist = that.commentlist.concat(res.data.data.list);
that.total=res.data.data.total;
that.total1=res.data.data.total1;
that.total2=res.data.data.total2;
that.total3=res.data.data.total3;
that.total = res.data.data.total;
that.total1 = res.data.data.total1;
that.total2 = res.data.data.total2;
that.total3 = res.data.data.total3;
}).catch((err) => {
console.log(err)
})
},
// 预览图片
previewimg(index,indexk){
previewimg(index, indexk) {
let that = this;
uni.previewImage({
current: that.commentlist[index].images[indexk],
urls: that.commentlist[index].images,
success: function (res) { },
fail: function (res) { },
complete: function (res) { },
current: that.commentlist[index].images[indexk],
urls: that.commentlist[index].images,
success: function(res) {},
fail: function(res) {},
complete: function(res) {},
})
微信程序
},
// 数量加减
reducenum() {
this.cartnumber = this.cartnumber - 1;
... ... @@ -418,8 +428,6 @@
console.log(this.cartnumber)
this.cartnumber = this.cartnumber
},
//获取面坊商品详情
getgoodtail() {
let that = this;
... ... @@ -427,15 +435,15 @@
var params = {
flour_goods_id: that.goodid,
}
console.log('面访商品id',params)
console.log('面访商品id', params)
app.post(url, params).then((res) => {
console.log(res);
that.goodtail = res.data.data;
that.status=res.data.data.status;
if(that.status==1){
that.status = res.data.data.status;
if (that.status == 1) {
that.getTime()
}
}).catch((err) => {
console.log(err)
... ... @@ -443,70 +451,70 @@
})
},
// 获取倒计时
getTime(){
getTime() {
let that = this;
var url = 'flour_goods/seckill_setting';
var params = {
}
console.log(params)
app.post(url,params, "post").then((res) => {
app.post(url, params, "post").then((res) => {
console.log(res);
that.timestatus=res.data.data.status
that.timestatus = res.data.data.status
let now_time = parseInt(new Date().getTime())
now_time=parseInt(now_time/1000);
let remaintime=res.data.data.endtime-now_time;
now_time = parseInt(now_time / 1000);
let remaintime = res.data.data.endtime - now_time;
let number = remaintime;
// 时间戳处理
var totalSecond = number;
console.log(totalSecond);
var interval = setInterval(function () {
// 秒数
var second = totalSecond;
// 天数位
var day = Math.floor(second/3600/24);
var dayStr = day.toString();
if (dayStr.length == 1) dayStr = '0' + dayStr;
// 小时位
var hr = Math.floor((second - day * 3600 * 24) / 3600);
var hrStr = hr.toString();
if (hrStr.length == 1) hrStr = '0' + hrStr;
// 分钟位
var min = Math.floor((second - day * 3600 * 24 - hr * 3600) / 60);
var minStr = min.toString();
if (minStr.length == 1) minStr = '0' + minStr;
// 秒位
var sec = second - day * 3600 * 24 - hr * 3600 - min * 60;
var secStr = sec.toString();
if (secStr.length == 1) secStr = '0' + secStr;
that.days=dayStr;
that.hours=hrStr;
that.minutes=minStr;
that.seconds=secStr;
totalSecond--;
if (totalSecond <= 0) {
clearInterval(interval);
// uni.showToast({
// title: '活动已结束',
// icon:'none'
// });
// 倒计时结束
//that.countDown();
that.days='00';
that.hours='00';
that.minutes='00';
that.seconds='00';
}
}.bind(this), 1000);
// 时间戳处理
var totalSecond = number;
console.log(totalSecond);
var interval = setInterval(function() {
// 秒数
var second = totalSecond;
// 天数位
var day = Math.floor(second / 3600 / 24);
var dayStr = day.toString();
if (dayStr.length == 1) dayStr = '0' + dayStr;
// 小时位
var hr = Math.floor((second - day * 3600 * 24) / 3600);
var hrStr = hr.toString();
if (hrStr.length == 1) hrStr = '0' + hrStr;
// 分钟位
var min = Math.floor((second - day * 3600 * 24 - hr * 3600) / 60);
var minStr = min.toString();
if (minStr.length == 1) minStr = '0' + minStr;
// 秒位
var sec = second - day * 3600 * 24 - hr * 3600 - min * 60;
var secStr = sec.toString();
if (secStr.length == 1) secStr = '0' + secStr;
that.days = dayStr;
that.hours = hrStr;
that.minutes = minStr;
that.seconds = secStr;
totalSecond--;
if (totalSecond <= 0) {
clearInterval(interval);
// uni.showToast({
// title: '活动已结束',
// icon:'none'
// });
// 倒计时结束
//that.countDown();
that.days = '00';
that.hours = '00';
that.minutes = '00';
that.seconds = '00';
}
}.bind(this), 1000);
}).catch((err) => {})
},
// 获取积分商城商品详情
getjifengoodtail() {
let that = this;
... ... @@ -518,7 +526,7 @@
app.post(url, params).then((res) => {
console.log(res);
that.goodtail = res.data.data;
that.score_goods_spec=res.data.data.score_goods_spec
that.score_goods_spec = res.data.data.score_goods_spec
console.log(that.goodtail)
}).catch((err) => {
... ... @@ -546,32 +554,32 @@
addcart() {
this.shuwrap = true;
//type 1店铺商品 2 积分商品 3 面坊商品
if(this.type==3){
if (this.type == 3) {
this.getshopsepc()
}else if(this.type==2){
} else if (this.type == 2) {
this.getspecs();
}else if(this.type==1){
} else if (this.type == 1) {
this.getmianfangspec()
}
this.addtype = 1
},
// 立即购买
buynow() {
this.shuwrap = true;
this.addtype = 2;
if(this.type==3){
if (this.type == 3) {
this.getshopsepc()
}else if(this.type==2){
} else if (this.type == 2) {
this.getspecs();
}else if(this.type==1){
} else if (this.type == 1) {
this.getmianfangspec()
}
},
// 获取店铺商品规格
getshopsepc(){
getshopsepc() {
let that = this;
var url = 'store_goods/get_spec_sku1';
var params = {
... ... @@ -583,7 +591,7 @@
that.specarr = res.data.data;
that.specarr.forEach(function(value, index, array) {
value.selindex = 0;
value.spec_value.forEach(function(valuek, indexk, arrayk) {
if (indexk == 0) {
value.selid = valuek.spec_value_id;
... ... @@ -591,14 +599,14 @@
valuek.sel = false
})
})
that.specarr = that.specarr;
}).catch((err) => {
console.log(err)
})
},
//获取积分商品规格
getspecs() {
let that = this;
... ... @@ -627,9 +635,9 @@
console.log(err)
})
},
//获取面坊商品规格
getmianfangspec(){
getmianfangspec() {
let that = this;
var url = 'flour_goods/get_spec_sku1';
var params = {
... ... @@ -648,9 +656,9 @@
valuek.sel = false
})
})
that.specarr = that.specarr;
}).catch((err) => {
console.log(err)
})
... ... @@ -667,21 +675,21 @@
this.$forceUpdate()
// console.log(this.specarr[parindex].spec_value[childindex].sel)
console.log(JSON.stringify(this.specarr))
if(this.type==3){
if (this.type == 3) {
this.changeshopsepc()
}else if(this.type==2){
} else if (this.type == 2) {
this.changspec();
}else if(this.type==1){
} else if (this.type == 1) {
this.changemianspec()
}
},
// 更改店铺商品图片和图片规格
changeshopsepc(){
changeshopsepc() {
let that = this;
let newspec_sku_id = []
that.specarr.forEach(function(value, index, array) {
newspec_sku_id.push(value.selid)
})
... ... @@ -703,7 +711,7 @@
that.goodtail = that.goodtail;
}).catch((err) => {
console.log(err)
})
},
// 更换积分商品商品的图片和价格
... ... @@ -736,10 +744,10 @@
})
},
//更换面坊商品商品的图片和价格
changemianspec(){
changemianspec() {
let that = this;
let newspec_sku_id = []
that.specarr.forEach(function(value, index, array) {
newspec_sku_id.push(value.selid)
})
... ... @@ -761,27 +769,27 @@
that.goodtail = that.goodtail;
}).catch((err) => {
console.log(err)
})
},
sure() {
let token=uni.getStorageSync("token");
if(token==''){
let url="/pages/nearshop/goodtail?id="+this.goodid+'&type='+this.type;
let token = uni.getStorageSync("token");
if (token == '') {
let url = "/pages/nearshop/goodtail?id=" + this.goodid + '&type=' + this.type;
console.log(url)
uni.setStorageSync("url",url)
uni.setStorageSync("url", url)
uni.redirectTo({
url:'/pages/login/loginindex?type=1'
url: '/pages/login/loginindex?type=1'
})
}else{
} else {
if (this.addtype == 1) {
this.addcartk();
} else {
this.buynowk()
}
}
},
// 加入购物车
addcartk() {
... ... @@ -799,7 +807,7 @@
spec_sku_id: that.spec_sku_id.join("_"),
number: that.cartnumber,
}
console.log('加入购物车的参数',params)
console.log('加入购物车的参数', params)
app.post(url, params).then((res) => {
console.log(res);
uni.showToast({
... ... @@ -838,7 +846,7 @@
// console.log(params)
// app.post(url, params).then((res) => {
// console.log(res);
// }).catch((err) => {
... ... @@ -848,22 +856,22 @@
// },
buynowk() {
let that = this;
uni.setStorageSync("addressitem","");
uni.setStorageSync("couponitem","")
uni.setStorageSync("addressitem", "");
uni.setStorageSync("couponitem", "")
var url = 'order/confirm_order';
let obj={}
obj.type=that.type;
obj.goods_id=that.goodtail.id;
obj.spec_sku_id=that.spec_sku_id.join("_");
obj.number=that.cartnumber;
let obj = {}
obj.type = that.type;
obj.goods_id = that.goodtail.id;
obj.spec_sku_id = that.spec_sku_id.join("_");
obj.number = that.cartnumber;
console.log(obj)
var data=[];
var data = [];
data.push(obj)
console.log('获取的参数', data)
var params = {
data: JSON.stringify(data),
}
console.log(params)
app.post(url, params, "post").then((res) => {
console.log(res);
... ... @@ -871,13 +879,13 @@
let seldata = JSON.stringify(data)
uni.setStorageSync("goodinfo", res.data.data);
uni.navigateTo({
url: '/pages/nearshop/sureorder?seldata='+seldata
url: '/pages/nearshop/sureorder?seldata=' + seldata
})
}).catch((err) => {
console.log(err);
uni.showToast({
title:err.msg,
icon:"none"
title: err.msg,
icon: "none"
})
})
},
... ... @@ -888,7 +896,10 @@
<style>
@import url('../../base/nearshop');
@import url('../../base/homepage');
.goodetailbox{
color:#3D454C;
font-size:24rpx;
}
.huiyuanprice {
margin-left: 28rpx
}
... ... @@ -897,21 +908,29 @@
padding: 32rpx 126rpx;
box-sizing: border-box;
}
.miaoduleft{
width:260rpx!important;
.miaoduleft {
width: 260rpx !important;
}
.miaotiao{
.miaotiao {
position: relative;
}
.qiang{
width:200rpx;
display:block;
.qiang {
width: 200rpx;
display: block;
position: absolute;
left:0rpx;
top:0;
left: 0rpx;
top: 0;
text-align: left;
padding-left: 10rpx;
box-sizing: border-box;
}
.topitemactive {
border: 1rpx solid #C29445;
color: #C29445;
}
</style>
... ...
<template>
<view class="container">
<web-view :webview-styles="webviewStyles" :src="src"></web-view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
webviewStyles: {
progress: {
color: '#fff'
}
}
}
},
onLoad(options) {
this.src = options.src
},
methods: {
}
}
</script>
<style>
</style>
... ...
... ... @@ -31,8 +31,8 @@
</view>
</view>
<view class="detailgood boxsizing flexone">
<view class="detailgooditem">
<view class="detailgood boxsizing flexone" v-if="shexianglist.length!=0">
<view class="detailgooditem" v-for="(item,index) in shexianglist" :key="index" @click="gojiankong(item)">
<image src="../../static/shopdetailtop.png" mode=""></image>
<view class="goodbot flextwo boxsizing">
<view class="goodbotleft">
... ... @@ -43,7 +43,7 @@
</view>
</view>
</view>
<view class="detailgooditem">
<!-- <view class="detailgooditem">
<image src="../../static/shopdetailtop.png" mode=""></image>
<view class="goodbot flextwo boxsizing">
<view class="goodbotleft">
... ... @@ -76,6 +76,8 @@
</view>
</view>
</view>
-->
</view>
<view class="addressbox boxsizing">
<view class="addressname">{{shopdetail.name}}</view>
... ... @@ -177,7 +179,8 @@
order:'',
page:1,
score_category_id:'',
goodlist:[]
goodlist:[],
shexianglist:[]
}
},
onLoad(options) {
... ... @@ -187,12 +190,38 @@
// 获取店铺详情
this.getshopdetail();
// 获取店铺列表
this.getgoodlist()
this.getgoodlist();
// 获取监控列表
this.getjiankonglist()
},
methods: {
//获取监控列表
getjiankonglist(){
let that = this;
var url = 'store/get_store_camera';
var params = {
store_id: that.store_id,
}
console.log('参数', params)
app.post(url, params, "post").then((res) => {
console.log(res);
that.shexianglist=res.data.data
}).catch((err) => {
console.log(err)
})
},
// 去监控页面
gojiankong(item){
uni.navigateTo({
url:"/pages/nearshop/jiankong?src="+item.url
})
},
// 拨打电话
phone(item){
uni.makePhoneCall({
... ...
... ... @@ -633,17 +633,18 @@
}else if(that.pay_type == 1){
console.log(JSON.stringify(res.data.data.result));
let result=res.data.data.result;
let obj={};
obj.appid=result.appid;
obj.partnerid=result.mch_id;
obj.prepayid=result.prepay_id;
obj.timestamp=result.timestamp;
obj.noncestr=result.nonce_str;
obj.package='Sign=WXPay';
obj.sign=result.sign;
console.log(JSON.stringify(obj));
var str = JSON.stringify(obj);
console.log(str)
console.log(JSON.stringify(result))
// let obj={};
// obj.appid=result.appid;
// obj.partnerid=result.mch_id;
// obj.prepayid=result.prepay_id;
// obj.timestamp=result.timestamp;
// obj.noncestr=result.nonce_str;
// obj.package='Sign=WXPay';
// obj.sign=result.sign;
// console.log(JSON.stringify(obj));
// var str = JSON.stringify(obj);
// console.log(str)
// let pay_data= {
// "appid": "wx24f90adc1d2f4f3d",
... ... @@ -664,7 +665,7 @@
// 微信支付
uni.requestPayment({
provider: 'wxpay',
orderInfo: str, //微信、支付宝订单数据
orderInfo: JSON.stringify(result), //微信、支付宝订单数据
success: function (res) {
console.log('success:' + JSON.stringify(res));
if(res.errMsg == 'requestPayment:ok') {
... ...
var isReady=false;var onReadyCallbacks=[];
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}};
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"}}];
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}};
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"}}];
__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()})}});
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}}}});
... ...
{"@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"}}
\ No newline at end of file
{"@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"}}
\ No newline at end of file
... ...