代码修改

This commit is contained in:
Sliverber 2024-02-28 11:33:23 +08:00
commit 9274b50e93
10 changed files with 294 additions and 157 deletions

View File

@ -1,12 +1,12 @@
import request from "@/utils/request.js";
/**
* 公共接口 优惠券接口 , 行业此讯 , 手机号码注册
*
*
*/
/**
* 获取主页数据 无需授权
*
*
*/
export function getIndexData() {
return request.get("index", {}, {
@ -16,7 +16,7 @@ export function getIndexData() {
/**
* 获取登录授权login
*
*
*/
export function getLogo() {
return request.get('wechat/getLogo', {}, {
@ -27,7 +27,7 @@ export function getLogo() {
/**
* 保存form_id
* @param string formId
* @param string formId
*/
export function setFormId(formId) {
return request.post("wechat/set_form_id", {
@ -38,7 +38,7 @@ export function setFormId(formId) {
/**
* 领取优惠卷
* @param int couponId
*
*
*/
export function setCouponReceive(couponId) {
return request.post('coupon/receive', {
@ -65,7 +65,7 @@ export function getUserCoupons(data) {
/**
* 文章分类列表
*
*
*/
export function getArticleCategoryList() {
return request.get('article/category/list', {}, {
@ -76,7 +76,7 @@ export function getArticleCategoryList() {
/**
* 文章列表
* @param int cid
*
*
*/
export function getArticleList(cid, data) {
return request.get('article/list/' + cid, data, {
@ -86,7 +86,7 @@ export function getArticleList(cid, data) {
/**
* 文章 热门列表
*
*
*/
export function getArticleHotList() {
return request.get('article/hot/list', {}, {
@ -96,7 +96,7 @@ export function getArticleHotList() {
/**
* 文章 轮播列表
*
*
*/
export function getArticleBannerList() {
return request.get('article/banner/list', {}, {
@ -106,8 +106,8 @@ export function getArticleBannerList() {
/**
* 文章详情
* @param int id
*
* @param int id
*
*/
export function getArticleDetails(id) {
return request.get('article/info', id, {
@ -150,7 +150,7 @@ export function registerVerify(phone) {
/**
* 手机号注册
* @param object data
*
*
*/
export function phoneRegister(data) {
return request.post('register', data, {
@ -161,7 +161,7 @@ export function phoneRegister(data) {
/**
* 手机号修改密码
* @param object data
*
*
*/
export function phoneRegisterReset(data) {
return request.post('register/reset', data, {
@ -172,7 +172,7 @@ export function phoneRegisterReset(data) {
/**
* 手机号+密码登录
* @param object data
*
*
*/
export function phoneLogin(data) {
return request.post('login', data, {
@ -205,7 +205,7 @@ export function switchH5Login() {
/**
* 换绑手机号
*
*
*/
export function bindingPhone(data) {
return request.post('update/binding', data);
@ -213,7 +213,7 @@ export function bindingPhone(data) {
/**
* 换绑手机号校验
*
*
*/
export function bindingVerify(data) {
return request.post('update/binding/verify', data);
@ -221,7 +221,7 @@ export function bindingVerify(data) {
/**
* 退出登錄
*
*
*/
export function logout() {
return request.get('logout');
@ -361,9 +361,9 @@ export function getinstallment(data) {
// 到首页查询ip地址
// 首页记录ip
export function logoip() {
return request.get(`login/log`, {}, {
export function getip() {
return request.get('login/log', {
noAuth: true
});
}
@ -374,4 +374,4 @@ export function logoip() {
// return request.get('order/getSignResult/',data,{
// noAuth: true
// })
// }
// }

View File

@ -19,13 +19,12 @@ export function getWechatConfig() {
* 获取微信sdk配置
* @returns {*}
*/
export function wechatAuth(code, spread,) {
export function wechatAuth(code, spread,channelId) {
var reg=/^[0-9]+.?[0-9]*$/; //判断字符串是否为数字 ,判断正整数用/^[1-9]+[0-9]*]*$/
spread = reg.test(spread) ? spread : 0;
channelId = reg.test(channelId) ? channelId : 0;
return request.get(
"wechat/authorize/login?code=" + code + "&spread_spid=" + spread , {},
"wechat/authorize/login?code=" + code + "&spread_spid=" + spread+"&channelId="+channelId, {},
{ noAuth: true }
);
}

View File

@ -26,7 +26,8 @@ module.exports = {
TIPS_KEY: 'TIPS_KEY',
SPREAD: 'SPREAD',
SPREAD: 'SPREAD',
CHANNELID: 'CHANNELID',
//缓存经度
CACHE_LONGITUDE: 'LONGITUDE',

View File

@ -200,10 +200,10 @@
</button>
<!-- #endif -->
<!-- #ifndef MP -->
<view class="item skeleton-rect" @click="onClickService">
<!-- <view class="item skeleton-rect" @click="onClickService">
<view class="iconfont icon-kefu"></view>
<view>客服</view>
</view>
</view> -->
<!-- #endif -->
<block v-if="type === 'normal'">
<view @click="setCollect" class='item skeleton-rect'>
@ -369,6 +369,7 @@
import cusPreviewImg from '@/components/cus-previewImg/cus-previewImg.vue'
import {
silenceBindingSpread,silenceBindingChannelId
} from "@/utils";
import parser from "@/components/jyf-parser/jyf-parser";
import {
@ -551,7 +552,7 @@
},
onLoad(options) {
// console.log(JSON.stringify(options),"options.spread")
alert("options.spread"+JSON.stringify(options))
// alert("options.spread"+JSON.stringify(options))
//
this.$set(this, 'theme', this.$Cache.get('theme'));
@ -609,7 +610,7 @@
// #endif
if (options.spread) app.globalData.spread = options.spread;
if (options.channelId) app.globalData.channelId = options.channelId;
if (options.channelId) app.globalData.channelId = options.channelId;
this.getGoodsDetails(); //
this.getCouponType(); //
@ -648,6 +649,8 @@
title: that.productInfo.storeName || '',
imageUrl: that.productInfo.image || '',
path: '/pages/goods_details/index?id=' + that.id + '&spread=' + that.uid,
}
},
// #endif
@ -700,6 +703,8 @@
scene: scene,
type: 0,
href: `${HTTP_H5_URL}${curRoute}&spread=${that.uid}`,
title: that.productInfo.storeName,
summary: app.globalData.companyName,
imageUrl: that.productInfo.image,
@ -1318,7 +1323,10 @@
*/
goBuy: Debounce(function(e) {
if (this.isLogin === false) {
toLogin();
// toLogin();
uni.navigateTo({
url:'/pages/user/index'
})
} else {
this.goCat(0);
}
@ -1428,6 +1436,7 @@
}
})
},
getImageBase64: function(images) {
let that = this;
imageBase64({

View File

@ -2,8 +2,12 @@
<view :data-theme="theme">
<skeleton :show="showSkeleton" :isNodes="isNodes" ref="skeleton" loading="chiaroscuro" selector="skeleton"
bgcolor="#FFF"></skeleton>
<!-- <view class="mask" >
</view> -->
<image src="@/static/img/wait.jpg" mode="" style="width: 750rpx;height: 100vh;z-index: 1000;"></image>
<view class="page-index skeleton" :class="{'bgf':navIndex >0}"
:style="{visibility: showSkeleton ? 'hidden' : 'visible'}">
:style="{visibility: showSkeleton ? 'hidden' : 'visible'}" v-if="showwait==false">
<!-- #ifdef H5 -->
<view class="header">
<view class="serch-wrapper flex">
@ -174,13 +178,13 @@
} from '@/api/api.js';
import {
spread,
} from "@/api/user";
// #ifdef MP-WEIXIN || APP-PLUS
import {
getTemlIds,
logoip,
} from '@/api/api.js';
// #endif
// #ifdef H5
@ -355,7 +359,8 @@
appUpdate: {},
wxText: "点击添加到我的小程序,微信首页下拉即可访问商城。",
cardShow: 1, //1 2 3 4
locationStatus: false
locationStatus: false,
showwait:false
}
},
watch: {
@ -373,7 +378,7 @@
this.setTabList()
},
onLoad(options) {
// const env = uni.getEnv();
//
@ -382,7 +387,7 @@
//
uni.setStorageSync('systemInfo', systemInfo.uniPlatform);
// const storedSystemInfo = uni.getStorageSync('systemInfo');
// console.log('', storedSystemInfo);
// if (systemInfo.uniPlatform === 'android' || systemInfo.uniPlatform === 'ios') {
// console.log(' App');
@ -397,7 +402,7 @@
// } else {
// console.log('');
// }
if (app.globalData.isIframe) {
setTimeout(() => {
let active;
@ -468,13 +473,21 @@
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';
// #endif
if(app_type=='weixinh5'){
this.showwait=true
}
},
onShow() {
let self = this;
if (!self.$Cache.getItem('cityList')) getCityList()
// if (!self.$Cache.getItem('cityList')) getCityList()
// #ifdef APP-PLUS
let barHeight = uni.getSystemInfoSync().statusBarHeight;
self.marTop = barHeight + 40; //
@ -487,45 +500,69 @@
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');
}else{
console.log('进入判断2');
uni.switchTab({
url:'/pages/user/index'
})
}
}else{
}
// 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');
// }else{
// console.log('2');
// // uni.switchTab({
// // url:'/pages/user/index'
// // })
// }
// }else{
// }
// let self = this;
// if (!self.$Cache.getItem('cityList')) getCityList()
// // #ifdef APP-PLUS
// let barHeight = uni.getSystemInfoSync().statusBarHeight;
// self.marTop = barHeight + 40; //
// setTimeout(() => {
// if (self.appUpdate.openUpgrade == 'true') {
// self.appVersionConfig();
// }
// }, 1000)
// #endif
uni.showTabBar();
// ip
// this.getip()
},
methods: {
isWeiXin() {
// #ifndef H5
return false;
// #endif
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
},
// IP
getipdz(){
getip().then(res => {
console.log(res,111)
})
},
menusTap(url) {
goPage().then(res => {
if (url == '/pages/goods_cate/goods_cate') {
@ -894,6 +931,15 @@
}
</style>
<style lang="scss" scoped>
.mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 9); /* 半透明黑色 */
z-index: 999; /* 使遮罩位于其他元素之上 */
}
.notice {
width: 100%;
height: 70rpx;

View File

@ -12,9 +12,18 @@
<image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
</image>
<view class="info">
<view class="name" v-if="!isLogin" @tap="openAuto">
<view class="name" v-if="!isLogin" @tap="openAuto" >
请点击登录
</view>
<!-- <view class="name" v-if="userInfo && uid">
{{userInfo && userInfo.nickname && uid ? userInfo.nickname : ''}}
<view class="vip" v-if="userInfo.vip">
<image :src="userInfo.vipIcon" alt="">
<view style="margin-left: 10rpx;" class="vip-txt">
{{userInfo.vipName || ''}}
</view>
</view>
</view> -->
<view class="name" v-if="userInfo && uid">
{{userInfo && userInfo.nickname && uid ? userInfo.nickname : ''}}
<view class="vip" v-if="userInfo.vip">
@ -80,7 +89,7 @@
</view>
</view>
<!-- 待还款 -->
<navigator url="/pages/users/repayment/index" class="repayment">
<navigator url="/pages/users/repayment/index" class="repayment" v-if="isLogin">
<view>待还款</view> <uni-text data-v-137d5072=""
class="iconfont icon-xiangyou"><span></span></uni-text>
</navigator>
@ -182,7 +191,7 @@
} from '@/utils/setTheme.js'
import animationType from '@/utils/animationType.js'
const app = getApp();
export default {
computed: mapGetters(['isLogin', 'chatUrl', 'uid']),
data() {
@ -276,7 +285,7 @@
that.$set(that, 'pageHeight', app.globalData.windowHeight);
// #endif
that.$set(that, 'MyMenus', app.globalData.MyMenus);
that.$set(that, 'chatConfig', Cache.getItem('chatConfig'));
// #ifdef H5
that.shareApi();
@ -297,11 +306,23 @@
});
// #endif
},
// computed: {
// isLogin() {
// return this.$store.getters.isLogin;
// }
// },
onShow: function() {
//
this.getidentityq()
this.getTokenIsExist();
// this.checj()
this.getTokenIsExist();
this.getidentityq()
setTimeout(() => {
}, 1000);
this.copyrightImage();
this.theme = this.$Cache.get('theme')
app.globalData.theme = this.$Cache.get('theme')
@ -314,55 +335,60 @@
that.pageHeight = res.windowHeight + 'px'
}
});
let currentUrl = window.location.href;
// URL
let urlParams = new URLSearchParams(currentUrl);
// code
let codeValue = urlParams.get('code');
console.log(currentUrl,'codeValuecodeValuecodeValue');
if(codeValue){
console.log('进入判断2');
uni.setStorageSync('openid', codeValue);
let stause= uni.getStorageSync('loginstause');
console.log(stause,'stausestause');
if(uni.getStorageSync('loginstause')){
console.log('进入判断3');
}else{
if(uni.getStorageSync('loginopen')){
uni.navigateTo({
url:'/pages/users/logins/index'
})
}else{
this.sendwxcode(codeValue)
}
console.log('进入判断4');
// uni.navigateTo({
// url:'/pages/users/login/index'
// })
}
}else{
}
// id
// code
// #endif
// #ifdef MP
let query = uni.createSelectorQuery();
let dom = query.select('.new-users');
// #endif
},
methods: {
sendwxcode(code){
checj(){
let currentUrl = window.location.href;
// URL
let urlParams = new URLSearchParams(currentUrl);
// code
let codeValue = urlParams.get('code');
console.log(currentUrl,'codeValuecodeValuecodeValue');
if(codeValue){
console.log('进入判断2');
uni.setStorageSync('openid', codeValue);
if(uni.getStorageSync('loginstause')){
console.log('判断3');
uni.showModal({
content: '进入判断3'
});
}else{
uni.showModal({
content: '进入判断4'
});
this.sendwxcode(codeValue)
console.log('判断4');
}
// if(){
// uni.navigateTo({
// url:'/pages/users/logins/index'
// })
// console.log('4');
// }
}else{
}
},
sendwxcode(code){
let data={
spread_spid: '',
code: code,
@ -372,54 +398,105 @@
// sendwxcodes(code).then(res => {
// console.log('wxcodewxcodewxcodewxcode');
// //
// })
uni.request({
url: 'https://yruibao.com/prod/api/front/login/wxpublic',
// url: 'http://192.168.2.26:20411/api/front/login/wxpublic', //
// url: 'https://yruibao.com/prod/api/front/login/wxpublic',
url: 'http://192.168.2.26:20411/api/front/login/wxpublic', //
data: data,
method:'POST',
success: (res) => {
console.log(res.data);
if(res.data.data.isBandPhone==false){
console.log('调换 aaaaaaaaaa');
uni.setStorageSync('loginopen', res.data.data.openid);
uni.navigateTo({
url:'/pages/users/logins/index'
})
}else{
console.log(res.data.data.token,'');
this.$store.commit("LOGIN", {
'token': res.data.data.token
});
// uni.switchTab({
// url:'/pages/index/index'
// })
let login = true
uni.setStorageSync('loginstause',login);
let data = res.data.data;
this.getUserInfo(data)
}
console.log('调换 aaaaaaaaaa');
uni.setStorageSync('loginopen', res.data.data.openid);
uni.navigateTo({
url:'/pages/users/logins/index'
})
}else{
let login = true
uni.setStorageSync('loginstause',login);
uni.setStorageSync('loginopen', res.data.data.openid);
this.$store.commit("LOGIN", {
'token': res.data.data.token
});
// this.$store.commit("SET_LOGIN_STATUS", true);
// uni.switchTab({
// url:'/pages/index/index'
// })
let data = res.data.data
this.getUserInfo(data)
}
// this.text = 'request success';
}
},
fail:(err)=>{
uni.showModal({content: JSON.stringify(err)});
}
});
// let ceshidata ={
// isBandPhone:true,
// nikeName:'55b1d6600c5d',
// phone:'17795402553',
// token:'2118e52ef3a740d59d5bf6814778fbf0',
// uid:20
// }
// if(ceshidata.isBandPhone==false){
// console.log(' aaaaaaaaaa');
// uni.setStorageSync('loginopen', ceshidata.openid);
// uni.navigateTo({
// url:'/pages/users/logins/index'
// })
// }else{
// let login = true
// uni.setStorageSync('loginstause',login);
// uni.setStorageSync('loginopen', ceshidata.openid);
// this.$store.commit("LOGIN", {
// 'token': ceshidata.token
// });
// this.$store.commit("SET_LOGIN_STATUS", true);
// // uni.switchTab({
// // url:'/pages/index/index'
// // })
// let data = ceshidata
// this.getUserInfo(data)
// }
// this.text = 'request success';
},
getUserInfo(data){
console.log(data,'dadadada');
this.$store.commit("SETUID", data.uid);
getUserInfo().then(res => {
this.$store.commit("UPDATE_USERINFO", res.data);
console.log('成功登录了');
this.$forceUpdate()
let backUrl = this.$Cache.get(BACK_URL) || "/pages/index/index";
if (backUrl.indexOf('/pages/users/login/index') !== -1) {
backUrl = '/pages/index/index';
}
uni.reLaunch({
url: backUrl
});
// console.log(this.$store.getters.isLogin,'this.$store.getters.isLogin;');
// console.log(this.isLogin,'isLoginisLoginisLogin');
// this.$forceUpdate()
// this.isLogin=true
setTimeout(() => {
let backUrl = this.$Cache.get(BACK_URL) || "/pages/index/index";
if (backUrl.indexOf('/pages/users/login/index') !== -1) {
backUrl = '/pages/index/index';
}
uni.reLaunch({
url:backUrl
});
}, 300);
})
},
@ -445,13 +522,17 @@
getTokenIsExist(){
tokenIsExistApi().then(res => {
let tokenIsExist = res.data;
console.log(this.isLogin,'this.isLoginthis.isLoginthis.isLoginthis.isLogin');
if (this.isLogin && tokenIsExist) {
console.log('1111111111111111111111');
this.getMyMenus();
this.getOrderData();
this.$store.dispatch('USERINFO').then(res => {
this.userInfo = res;
});
} else {
this.$store.commit("LOGOUT");
this.$store.commit('UPDATE_LOGIN', '');
this.$store.commit('UPDATE_USERINFO', {});
@ -579,7 +660,7 @@
})
},
/**
*
*
* 获取个人中心图标
*/
getMyMenus: function() {
@ -667,7 +748,7 @@
padding: 10rpx;
box-sizing: border-box;
border-radius: 20rpx;
font-size: 12px;
font-size: 12px;
color: #fff;
position: absolute;
top: -10rpx;
@ -815,7 +896,7 @@
.num {
font-size: 42rpx;
font-weight: bold;
}
.txt {
@ -1017,4 +1098,4 @@
padding: 0 36rpx;
border-radius: 20rpx;
}
</style>
</style>

View File

@ -154,8 +154,9 @@
},
onShow() {
let abb=uni.getStorageSync('channelId')
console.log(abb,'abbabbabbabbabb');
// let abb='4'
// uni.setStorageSync('channelId', abb);
},
methods: {
//
@ -319,14 +320,15 @@
uni.showLoading({
title: '登录中'
})
let channelId=''
let channelId=0
let abb=uni.getStorageSync('channelId')
if(abb!=undefined){
channelId=abb
channelId=parseInt(abb);
}
let openid= uni.getStorageSync('loginstause');
let openid= uni.getStorageSync('openid');
console.log(typeof channelId,'channelIdchannelId');
loginMobiles({
phone: that.account,
captcha: that.captcha,

View File

@ -82,8 +82,8 @@
<!-- #ifdef H5 -->
<view class="logOut cart-color acea-row row-center-wrapper" @click="outLogin"
v-if="!this.$wechat.isWeixin() || (this.$wechat.isWeixin() && publicLoginType ==2)">退出登录</view>
<view class="logOut cart-color acea-row row-center-wrapper" @click="outLogin"
>退出登录</view>
<!-- <view class="logOut cart-color acea-row row-center-wrapper" @click="outLogin"
>退出登录</view> -->
<!-- #endif -->
<!-- #ifdef APP-PLUS -->
<view class="logOut cart-color acea-row row-center-wrapper" @click="outLogin">退出登录</view>

View File

@ -144,8 +144,7 @@
//if(!code) location.replace(decodeURIComponent(decodeURIComponent(option.query.back_url)));
if (code && this.options.scope !== 'snsapi_base') {
let spread = app.globalData.spread ? app.globalData.spread : 0;
let channelId = app.globalData.channelId ? app.globalData.channelId : 0;
let channelId = app.globalData.channelId ? app.globalData.channelId : 0;
// wechatAuth(code, Cache.get("spread"), loginType)
wechat.auth(code, spread,channelId).then(res => {
if (res.type === 'register') {
@ -252,7 +251,7 @@
let userInfo = {};
userInfo.code = code;
userInfo.spread_spid = app.globalData.spread; //广ID
userInfo.channelId = app.globalData.channelId; //ID
userInfo.channelId = app.globalData.channelId; //ID
userInfo.avatar = '';
userInfo.nickName = '微信用户';
userInfo.type = 'routine'
@ -268,7 +267,7 @@
let userInfo = res.userInfo;
userInfo.code = code;
userInfo.spread_spid = app.globalData.spread; //广ID
userInfo.channelId = app.globalData.channelId; //ID
userInfo.channelId = app.globalData.channelId; //ID
userInfo.avatar = userInfo.userInfo.avatarUrl;
userInfo.city = userInfo.userInfo.city;
userInfo.country = userInfo.userInfo.country;

BIN
static/img/wait.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB