首页banner图增加点击跳转页面
parent
7aee8d4d55
commit
dc4c52e857
|
@ -234,8 +234,6 @@
|
|||
}
|
||||
})
|
||||
this.dataList.concat(this.dataList);
|
||||
} else {
|
||||
this.dataList = [];
|
||||
}
|
||||
} else {
|
||||
this.$toolAll.tools.showToast(res.msg);
|
||||
|
|
|
@ -80,11 +80,4 @@
|
|||
.container-loading .loading-box span:nth-child(2){border-radius: 50% 50% 50% 0;transform-origin: bottom left;animation-delay: .5s;}
|
||||
.container-loading .loading-box span:nth-child(3){border-radius: 50% 0 50% 50%;transform-origin: top right;animation-delay: 1.5s;}
|
||||
.container-loading .loading-box span:nth-child(4){border-radius: 0 50% 50% 50%;transform-origin: top left;animation-delay: 1s;}
|
||||
scroll-view ::-webkit-scrollbar {
|
||||
display: none !important;
|
||||
width: 0 !important;
|
||||
height: 0 !important;
|
||||
-webkit-appearance: none;
|
||||
background: transparent;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -96,6 +96,7 @@
|
|||
// 获取当前页面路径
|
||||
let pages = getCurrentPages();
|
||||
let route = pages[pages.length - 1].route;
|
||||
console.log(route,99);
|
||||
uni.setStorageSync('url',`/${route}?invite_code=${uni.getStorageSync('invite_code')}`);
|
||||
this.log(route,'status-nav组件打印:当前页面路径')
|
||||
},
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<view v-if="isDot" class="banner-box">
|
||||
<swiper :current="bcurrent" @change="changeBanner" :style="{height: newHeight+'px'}" :autoplay="isplay" :circular="true" :interval="3000" :duration="500">
|
||||
<swiper-item v-for="(item,index) in bannerList" :key="index">
|
||||
<view @tap="chooseImg(index)" class="img-box">
|
||||
<view @tap="chooseImg(index,item.url)" class="img-box">
|
||||
<image :style="{borderRadius:newRadius+'px',height:newHeight+'px'}" class="img animated fadeIn" :src="item.imgSrc" mode="aspectFill"></image>
|
||||
<image @tap.stop="playVideo(index)" v-if="item.isVideo && isVedio" class="posia animated bounceIn" style="width: 126rpx;height: 126rpx;z-index: 1;" src="/static/public/video.png" mode=""></image>
|
||||
</view>
|
||||
|
@ -64,7 +64,7 @@
|
|||
};
|
||||
},
|
||||
methods:{
|
||||
chooseImg(index){
|
||||
chooseImg(index,url){
|
||||
// console.log('当前banner图',index);
|
||||
this.bcurrent = index
|
||||
if(this.browseP){
|
||||
|
@ -95,7 +95,7 @@
|
|||
})
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url:this.bannerList[index].url
|
||||
url:`/${url}`
|
||||
})
|
||||
}
|
||||
},
|
||||
|
|
|
@ -73,6 +73,11 @@ const request = (method, url, options) => {
|
|||
if (res.data.code == 0) {
|
||||
resolve(res.data)
|
||||
} else {
|
||||
uni.showToast({
|
||||
title:res.data.msg,
|
||||
icon:'none',
|
||||
position:'bottom'
|
||||
})
|
||||
resolve(res.data)
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name" : "佩利商城",
|
||||
"appid" : "__UNI__02EF3E2",
|
||||
"appid" : "__UNI__B0099F7",
|
||||
"description" : "",
|
||||
"versionName" : "1.0.0",
|
||||
"versionCode" : "100",
|
||||
|
@ -68,10 +68,10 @@
|
|||
/* 快应用特有相关 */
|
||||
"mp-weixin" : {
|
||||
/* 小程序特有相关 */
|
||||
"appid" : "wxa02e44170bc722cd",
|
||||
"appid" : "wx2654bc27c419ada6",
|
||||
"setting" : {
|
||||
"urlCheck" : true,
|
||||
"es6" : false
|
||||
"es6" : true
|
||||
},
|
||||
"usingComponents" : true,
|
||||
"permission" : {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
:ifTitle="true"
|
||||
:ifReturn="true"
|
||||
:ifCenter="true"
|
||||
:navBarTitle="'登录'"></status-nav>
|
||||
:navBarTitle="'用户服务协议'"></status-nav>
|
||||
<!-- 容器 -->
|
||||
<container-subgroup>
|
||||
<view slot="content">
|
||||
|
@ -19,19 +19,14 @@
|
|||
export default {
|
||||
data(){
|
||||
return {
|
||||
content:'<p>1.用户协议谢谢洗诶诶黑货币的宁波</p>'
|
||||
content:'<p>1.用户协议谢谢授权的小姐姐,小哥哥。</p>'
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
if(uni.getStorageSync('phone_active')){
|
||||
uni.removeStorageSync('transientUrl');
|
||||
} else {
|
||||
uni.setStorageSync('transientUrl',`/pages/login/agreement?invite_code=${options.invite_code}}`);
|
||||
uni.navigateTo({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
}
|
||||
this.$toolAll.tools.escape2Html(this.content)
|
||||
this.$requst.get('/api/index/agreement').then(res=>{
|
||||
console.log(res,'用户协议');
|
||||
this.content = this.$toolAll.tools.escape2Html(res.data.content);
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<view v-if="isShowP" class="disjcac posAll">
|
||||
<view class="bacf radius20 width100 tank-box">
|
||||
<view class="tc tank-box-itemone">请授权绑定手机号</view>
|
||||
<view class="fon28 colf pad-x30 pad-zy30 tc disjb">
|
||||
<view class="fon28 colf pad-sx30 pad-zy30 tc disjb">
|
||||
<view class="pad-sx10 radius10 tank-btn" style="background-color: rgba(230, 230, 230,1);color: #000000;">暂不绑定</view>
|
||||
<view :style="{background:publicColor}" class="pad-sx10 radius10 tank-btn posir">
|
||||
立即绑定
|
||||
|
|
Loading…
Reference in New Issue