diff --git a/config/env.js b/config/env.js index 8653907..61c85b7 100644 --- a/config/env.js +++ b/config/env.js @@ -1,15 +1,15 @@ //api接口环境配置 // production正式/development线上测试/local本地开发 -var NowENV = 'development'; +var NowENV = 'production'; var ENV_API_URL = { - production:'https://photo.internal.com/', //正式环境 + production:'https://takephoto.tsl3060.com/', //正式环境 development:'http://photo.internal.com/', //开发测试环境 local:'https://photo.internal.com/',//本地调试环境 } //CdnUrl 环境配置[都默认为线上都行] var ENV_BASE_URL = { - production:'https://photo.internal.com', //正式环境 + production:'https://takephoto.tsl3060.com', //正式环境 development:'http://photo.internal.com', //开发测试环境 local:'https://photo.internal.com',//本地调试环境 } diff --git a/pages/index/index.vue b/pages/index/index.vue index 819c7ba..ac71c7c 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -66,7 +66,7 @@ - + {{item.title}} @@ -78,11 +78,11 @@ - + - + {{item.title}} @@ -92,7 +92,7 @@ - + @@ -166,12 +166,7 @@ }, onLoad() { var _this = this; - //banner信息 - _this.getBannerList(); - //场景 - _this.getSceneMenu(); - //热门 - _this.getHotList(); + var show_agreement = _this.$user.session('show_agreement'); console.log('show_agreement',show_agreement); @@ -180,12 +175,18 @@ _this.agreement(); _this.tips_show = true; } - //延时1秒请求,保证成功 setTimeout(function(res){ _this.getUploadConfig(); + //banner信息 + _this.getBannerList(); + //场景 + _this.getSceneMenu(); + //热门 + _this.getHotList(); },1000); + }, onShareAppMessage() { @@ -464,12 +465,12 @@ .topRight .distance image{ width: 32rpx; height: 32rpx; margin-right: 24rpx;} - .picList{ width: 100%; height: 360rpx; } + .picList{ width: 100%; height: auto; } .scrollBox { margin-top: 20rpx; width: 100%; - height: 360rpx; + height: 390rpx; white-space: nowrap; } @@ -477,7 +478,7 @@ .picBox { display: inline-block; width:260rpx; - height: 360rpx; + height: 390rpx; text-align: center; position: relative; margin-left: 20rpx; @@ -486,13 +487,13 @@ .picBox .pic{ position: absolute; width:100%; - height: 360rpx; + height: 390rpx; } .picBox .pic image{ - width:260rpx; - height: 360rpx; + width:100%; + height: 390rpx; border-radius:24rpx; } .picBox .pic_title{ diff --git a/uni.scss b/uni.scss index a134c94..6b82e85 100644 --- a/uni.scss +++ b/uni.scss @@ -87,4 +87,4 @@ page{background-color: #F5F6FB;} background-color: #FFFFFF; } //占位 -.spaceBox{ width: 100%; height: 120rpx; text-align: center;} +.spaceBox{ width: 100%; height: 120rpx; margin: 10rpx auto; text-align: center;}