h5配置以及微信公众号影藏
This commit is contained in:
parent
9274b50e93
commit
1f196a5a9c
10
App.vue
10
App.vue
|
@ -143,7 +143,10 @@
|
|||
} else {
|
||||
this.globalData.isIframe = false;
|
||||
}
|
||||
|
||||
if(option.query.channelId){
|
||||
uni.setStorageSync('channelId', option.query.channelId);
|
||||
|
||||
}
|
||||
// wx公众号自动授权登录
|
||||
let snsapiBase = 'snsapi_base';
|
||||
let urlData = location.pathname + location.search;
|
||||
|
@ -155,10 +158,7 @@
|
|||
scope
|
||||
} = option.query;
|
||||
console.log(option.query,'option.queryoption.queryoption.query');
|
||||
if(option.query.channelId){
|
||||
uni.setStorageSync('channelId', option.query.channelId);
|
||||
|
||||
}
|
||||
|
||||
|
||||
if (code && code != uni.getStorageSync('snsapiCode') && location.pathname.indexOf(
|
||||
'/pages/users/wechat_login/index') === -1) {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<!-- <view class="mask" >
|
||||
|
||||
</view> -->
|
||||
<image src="@/static/img/wait.jpg" mode="" style="width: 750rpx;height: 100vh;z-index: 1000;"></image>
|
||||
<image src="@/static/img/wait.jpg" mode="" style="width: 750rpx;height: 100vh;z-index: 1000;" v-if="showwait"></image>
|
||||
<view class="page-index skeleton" :class="{'bgf':navIndex >0}"
|
||||
:style="{visibility: showSkeleton ? 'hidden' : 'visible'}" v-if="showwait==false">
|
||||
<!-- #ifdef H5 -->
|
||||
|
@ -378,7 +378,7 @@
|
|||
this.setTabList()
|
||||
},
|
||||
onLoad(options) {
|
||||
|
||||
this.getipdz()
|
||||
// const env = uni.getEnv();
|
||||
|
||||
// 获取系统信息
|
||||
|
@ -473,7 +473,8 @@
|
|||
if (this.isLogin && parseInt(options.channelId) > 0) {
|
||||
silenceBindingChannelId()
|
||||
}
|
||||
this.getipdz()
|
||||
|
||||
|
||||
// #ifdef H5
|
||||
var app_type = this.isWeiXin() ? 'weixinh5' : 'h5';
|
||||
var app_type_name = this.isWeiXin() ? '微信公众号' : 'H5';
|
||||
|
@ -499,21 +500,14 @@
|
|||
// #endif
|
||||
uni.showTabBar();
|
||||
|
||||
let currentUrl = window.location.href;
|
||||
|
||||
// 解析URL,提取参数
|
||||
let urlParams = new URLSearchParams(currentUrl);
|
||||
|
||||
// 获取名为code的参数的值
|
||||
// let codeValue = urlParams.get('code');
|
||||
// console.log(codeValue,'codeValuecodeValuecodeValue');
|
||||
|
||||
// console.log('进入了首页');
|
||||
// const id = uni.getStorageSync('openid');
|
||||
|
||||
// if(codeValue){
|
||||
// console.log('登陆成功',id);
|
||||
// uni.setStorageSync('openid', codeValue);
|
||||
// let stause= uni.getStorageSync('loginstause');
|
||||
//
|
||||
// if(stause){
|
||||
|
||||
// console.log('进入判断1');
|
||||
|
@ -541,7 +535,7 @@
|
|||
uni.showTabBar();
|
||||
|
||||
// 调用记录ip
|
||||
// this.getip()
|
||||
// this.getipdz()
|
||||
},
|
||||
methods: {
|
||||
isWeiXin() {
|
||||
|
@ -557,9 +551,39 @@
|
|||
},
|
||||
// 获取IP地址
|
||||
getipdz(){
|
||||
getip().then(res => {
|
||||
console.log(res,111)
|
||||
})
|
||||
let codeValue= uni.getStorageSync('channelId');
|
||||
if(uni.getStorageSync('channelcs')){
|
||||
|
||||
}else{
|
||||
let cs=false
|
||||
uni.setStorageSync('channelcs', cs);
|
||||
}
|
||||
let acc =uni.getStorageSync('channelcs');
|
||||
console.log(acc,'&&acc&&acc');
|
||||
if(this.isLogin){
|
||||
getip().then(res => {
|
||||
console.log(res,111)
|
||||
})
|
||||
}
|
||||
if(codeValue&&acc==false){
|
||||
console.log(codeValue,'codeValuecodeValuecodeValue');
|
||||
|
||||
uni.request({
|
||||
url: 'https://yruibao.com/prod/api/front/channel/record?channelId='+codeValue,
|
||||
// url: 'http://192.168.2.26:20411/api/front/channel/record?channelId='+codeValue, //仅为示例,并非真实接口地址。
|
||||
// data: data,
|
||||
method:'GET',
|
||||
|
||||
success: (res) => {
|
||||
let add=true
|
||||
uni.setStorageSync('channelcs', add);
|
||||
},
|
||||
fail:(err)=>{
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
|
|
@ -312,10 +312,17 @@
|
|||
uni.showLoading({
|
||||
title: '登录中'
|
||||
})
|
||||
let channelId=0
|
||||
let abb=uni.getStorageSync('channelId')
|
||||
|
||||
if(abb!=undefined){
|
||||
channelId=parseInt(abb);
|
||||
}
|
||||
loginMobile({
|
||||
phone: that.account,
|
||||
captcha: that.captcha,
|
||||
spread_spid: that.$Cache.get("spread"),
|
||||
channelId:channelId,
|
||||
|
||||
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user