h5配置以及微信公众号影藏

This commit is contained in:
Sliverber 2024-02-28 16:04:00 +08:00
parent 9274b50e93
commit 1f196a5a9c
3 changed files with 52 additions and 21 deletions

10
App.vue
View File

@ -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) {

View File

@ -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)=>{
}
});
}
},

View File

@ -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,
})