main
JING 8 months ago
parent f614457df1
commit a9ab5bcbc0
  1. 6
      config/env.js
  2. 35
      pages/index/index.vue
  3. 2
      uni.scss

@ -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',//本地调试环境
}

@ -66,7 +66,7 @@
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll1" scroll-left="0">
<view class="picBox" v-for="(item,index) in album_list" :key="index" @click="viewAlbum(item.id)">
<view class="pic">
<image :src="item.face" mode="widthFix"></image>
<image :src="item.face" mode="scaleToFill"></image>
</view>
<view class="pic_title">{{item.title}}</view>
</view>
@ -78,11 +78,11 @@
<image src="/static/img/index/title_kt.png" mode="widthFix"></image>
</view>
<view class="picList">
<view class="picList" style="margin-bottom: 80rpx;">
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll2" scroll-left="0">
<view class="picBox" v-for="(item,index) in cartoon_list" :key="index" @click="viewCartoon(item.id)">
<view class="pic">
<image :src="item.face" mode="widthFix"></image>
<image :src="item.face" mode="scaleToFill"></image>
</view>
<view class="pic_title">{{item.title}}</view>
</view>
@ -92,7 +92,7 @@
</view>
<view class="spaceBox"></view>
<u-popup :show="tips_show" :round="10" mode="center" bgColor="transparent" @close="close('tips_show')" @open="open('tips_show')">
<view class="popupBox">
@ -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{

@ -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;}

Loading…
Cancel
Save