增加登录日志埋点
This commit is contained in:
parent
915ff6b184
commit
d757f99b5d
@ -5,7 +5,8 @@ VITE_APP_TITLE='uniapp-vue3-project'
|
|||||||
VITE_APP_ENV='development'
|
VITE_APP_ENV='development'
|
||||||
|
|
||||||
# 接口地址
|
# 接口地址
|
||||||
VITE_APP_BASE_API='https://apidev.lakeapp.cn/'
|
#VITE_APP_BASE_API='https://apidev.lakeapp.cn/'
|
||||||
|
VITE_APP_BASE_API='https://api.lakeapp.cn/'
|
||||||
|
|
||||||
# 删除console
|
# 删除console
|
||||||
VITE_DROP_CONSOLE=false
|
VITE_DROP_CONSOLE=false
|
||||||
|
264
src/App.vue
264
src/App.vue
@ -1,103 +1,213 @@
|
|||||||
<script setup lang='ts'>
|
<script lang='ts'>
|
||||||
import { mpUpdate, setCompanyId, setReferrerUserId, setRegisterStoreId } from '@/utils';
|
import { mpUpdate, setCompanyId, setReferrerUserId, setRegisterStoreId } from '@/utils';
|
||||||
|
|
||||||
onLaunch(async (options) => {
|
const logManager = uni.getRealtimeLogManager();
|
||||||
console.log('App Launch options ', options);
|
const logger = logManager.tag('suke-mp');
|
||||||
|
|
||||||
const miniProgram = uni.getAccountInfoSync().miniProgram;
|
export default {
|
||||||
const env = miniProgram.envVersion;
|
onLaunch: async (options: any) => {
|
||||||
|
console.log('App Launch options ', options);
|
||||||
|
|
||||||
//生产
|
const miniProgram = uni.getAccountInfoSync().miniProgram;
|
||||||
if(env === 'release' || env === 'trial') {
|
const env = miniProgram.envVersion;
|
||||||
async function getVersionStatus() {
|
|
||||||
return new Promise((resolve, reject) => {
|
logger.info(`launch options ${env}: `, options);
|
||||||
uni.request({
|
//生产
|
||||||
url: 'https://api.lakeapp.cn/wechat/version_info',
|
if(env === 'release' || env === 'trial') {
|
||||||
success(res) {
|
async function getVersionStatus() {
|
||||||
console.log(res);
|
return new Promise((resolve, reject) => {
|
||||||
resolve(res);
|
uni.request({
|
||||||
},
|
url: 'https://api.lakeapp.cn/wechat/version_info',
|
||||||
fail(exception) {
|
success(res) {
|
||||||
reject(exception);
|
console.log(res);
|
||||||
|
resolve(res);
|
||||||
|
},
|
||||||
|
fail(exception) {
|
||||||
|
reject(exception);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}).then((res) => {
|
||||||
|
const { version, audit } = res.data;
|
||||||
|
// if(miniProgram.version === version && audit == 1) {
|
||||||
|
if(audit == 1) {
|
||||||
|
setCompanyId('1150930317231112193');
|
||||||
|
setRegisterStoreId('1150930317436633090');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}).then((res) => {
|
}
|
||||||
const { version, audit } = res.data;
|
|
||||||
// if(miniProgram.version === version && audit == 1) {
|
await getVersionStatus();
|
||||||
if(audit == 1) {
|
|
||||||
setCompanyId('1150930317231112193');
|
|
||||||
setRegisterStoreId('1150930317436633090');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await getVersionStatus();
|
//测试、开发 trial,develop
|
||||||
}
|
else {
|
||||||
|
// setCompanyId('1724629180555919361');
|
||||||
|
// setRegisterStoreId('1725026299888406529');
|
||||||
|
// setCompanyId('1471673498334113794');
|
||||||
|
// setRegisterStoreId('1471673498413805570');
|
||||||
|
|
||||||
//测试、开发 trial,develop
|
setCompanyId('1150930317231112193');
|
||||||
else {
|
setRegisterStoreId('1150930317436633090');
|
||||||
setCompanyId('1150930317231112193');
|
|
||||||
setRegisterStoreId('1150930317436633090');
|
|
||||||
}
|
|
||||||
|
|
||||||
if(options?.query) {
|
|
||||||
|
|
||||||
// options.query.scene = 'companyId%3D1150930317231112193%26wxOpenId%3D111%26ticketId%3D123456%26storeId%3D1150930317436633090'
|
|
||||||
|
|
||||||
//保存登录邀请员工id
|
|
||||||
if(options.query.referrerUserId) {
|
|
||||||
setReferrerUserId(options.query.referrerUserId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//保存注册门店id
|
if(options?.query) {
|
||||||
if(options.query.companyId) {
|
|
||||||
setCompanyId(options.query.companyId);
|
|
||||||
}
|
|
||||||
|
|
||||||
//保存注册门店id
|
// options.query.scene = 'companyId%3D1150930317231112193%26wxOpenId%3D111%26ticketId%3D123456%26storeId%3D1150930317436633090'
|
||||||
if(options.query.storeId) {
|
|
||||||
setRegisterStoreId(options.query.storeId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(options?.query.scene) {
|
//保存登录邀请员工id
|
||||||
function getQueryParam(queryParams: string, key: string) {
|
if(options.query.referrerUserId) {
|
||||||
let regex = new RegExp('(?:[?&]|^)' + key + '=([^&]+)'),
|
setReferrerUserId(options.query.referrerUserId);
|
||||||
match = queryParams.match(regex);
|
|
||||||
return match && match[1];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//保存注册门店id
|
//保存注册门店id
|
||||||
const params = decodeURIComponent(options?.query.scene);
|
if(options.query.companyId) {
|
||||||
if(params.includes('companyId')) {
|
setCompanyId(options.query.companyId);
|
||||||
setCompanyId(getQueryParam(params, 'companyId') || '');
|
|
||||||
}
|
}
|
||||||
if(params.includes('storeId')) {
|
|
||||||
setRegisterStoreId(getQueryParam(params, 'storeId') || '');
|
//保存注册门店id
|
||||||
|
if(options.query.storeId) {
|
||||||
|
setRegisterStoreId(options.query.storeId);
|
||||||
}
|
}
|
||||||
if(options?.query.scene === 'edit_avatar_nickname') {
|
|
||||||
setTimeout(() => {
|
if(options?.query.scene) {
|
||||||
uni.reLaunch({
|
function getQueryParam(queryParams: string, key: string) {
|
||||||
url: '/pages/mine/subs/profile/index'
|
let regex = new RegExp('(?:[?&]|^)' + key + '=([^&]+)'),
|
||||||
});
|
match = queryParams.match(regex);
|
||||||
}, 500);
|
return match && match[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
//保存注册门店id
|
||||||
|
const params = decodeURIComponent(options?.query.scene);
|
||||||
|
if(params.includes('companyId')) {
|
||||||
|
setCompanyId(getQueryParam(params, 'companyId') || '');
|
||||||
|
}
|
||||||
|
if(params.includes('storeId')) {
|
||||||
|
setRegisterStoreId(getQueryParam(params, 'storeId') || '');
|
||||||
|
}
|
||||||
|
if(options?.query.scene === 'edit_avatar_nickname') {
|
||||||
|
setTimeout(() => {
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/mine/subs/profile/index'
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// #ifdef MP
|
||||||
|
mpUpdate();
|
||||||
|
// #endif
|
||||||
|
},
|
||||||
|
onShow: async () => {
|
||||||
|
console.log('App Show');
|
||||||
|
},
|
||||||
|
onHide: async () => {
|
||||||
|
console.log('App Hide');
|
||||||
|
},
|
||||||
|
|
||||||
|
globalData: {
|
||||||
|
logger: logger
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// #ifdef MP
|
// onLaunch(async (options) => {
|
||||||
mpUpdate();
|
// console.log('App Launch options ', options);
|
||||||
// #endif
|
// // globalData.logger.info('launch options : ', options);
|
||||||
});
|
//
|
||||||
onShow(() => {
|
// const miniProgram = uni.getAccountInfoSync().miniProgram;
|
||||||
console.log('App Show');
|
// const env = miniProgram.envVersion;
|
||||||
});
|
//
|
||||||
onHide(() => {
|
// logger.info('launch options env : ', `${env} ${options}`);
|
||||||
console.log('App Hide');
|
// //生产
|
||||||
});
|
// if(env === 'release' || env === 'trial') {
|
||||||
|
// async function getVersionStatus() {
|
||||||
|
// return new Promise((resolve, reject) => {
|
||||||
|
// uni.request({
|
||||||
|
// url: 'https://api.lakeapp.cn/wechat/version_info',
|
||||||
|
// success(res) {
|
||||||
|
// console.log(res);
|
||||||
|
// resolve(res);
|
||||||
|
// },
|
||||||
|
// fail(exception) {
|
||||||
|
// reject(exception);
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// }).then((res) => {
|
||||||
|
// const { version, audit } = res.data;
|
||||||
|
// // if(miniProgram.version === version && audit == 1) {
|
||||||
|
// if(audit == 1) {
|
||||||
|
// setCompanyId('1150930317231112193');
|
||||||
|
// setRegisterStoreId('1150930317436633090');
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// await getVersionStatus();
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// //测试、开发 trial,develop
|
||||||
|
// else {
|
||||||
|
// // setCompanyId('1724629180555919361');
|
||||||
|
// // setRegisterStoreId('1725026299888406529');
|
||||||
|
// setCompanyId('1471673498334113794');
|
||||||
|
// setRegisterStoreId('1471673498413805570');
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if(options?.query) {
|
||||||
|
//
|
||||||
|
// // options.query.scene = 'companyId%3D1150930317231112193%26wxOpenId%3D111%26ticketId%3D123456%26storeId%3D1150930317436633090'
|
||||||
|
//
|
||||||
|
// //保存登录邀请员工id
|
||||||
|
// if(options.query.referrerUserId) {
|
||||||
|
// setReferrerUserId(options.query.referrerUserId);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// //保存注册门店id
|
||||||
|
// if(options.query.companyId) {
|
||||||
|
// setCompanyId(options.query.companyId);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// //保存注册门店id
|
||||||
|
// if(options.query.storeId) {
|
||||||
|
// setRegisterStoreId(options.query.storeId);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if(options?.query.scene) {
|
||||||
|
// function getQueryParam(queryParams: string, key: string) {
|
||||||
|
// let regex = new RegExp('(?:[?&]|^)' + key + '=([^&]+)'),
|
||||||
|
// match = queryParams.match(regex);
|
||||||
|
// return match && match[1];
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// //保存注册门店id
|
||||||
|
// const params = decodeURIComponent(options?.query.scene);
|
||||||
|
// if(params.includes('companyId')) {
|
||||||
|
// setCompanyId(getQueryParam(params, 'companyId') || '');
|
||||||
|
// }
|
||||||
|
// if(params.includes('storeId')) {
|
||||||
|
// setRegisterStoreId(getQueryParam(params, 'storeId') || '');
|
||||||
|
// }
|
||||||
|
// if(options?.query.scene === 'edit_avatar_nickname') {
|
||||||
|
// setTimeout(() => {
|
||||||
|
// uni.reLaunch({
|
||||||
|
// url: '/pages/mine/subs/profile/index'
|
||||||
|
// });
|
||||||
|
// }, 500);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // #ifdef MP
|
||||||
|
// mpUpdate();
|
||||||
|
// // #endif
|
||||||
|
// });
|
||||||
|
// onShow(() => {
|
||||||
|
// console.log('App Show');
|
||||||
|
// });
|
||||||
|
// onHide(() => {
|
||||||
|
// console.log('App Hide');
|
||||||
|
// });
|
||||||
|
|
||||||
// globalData : {
|
|
||||||
// test: '';
|
|
||||||
// }
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
|
@ -6,7 +6,10 @@
|
|||||||
<view class='store-item' v-for='(item, index) in companyList' :key='index' @click='() => {
|
<view class='store-item' v-for='(item, index) in companyList' :key='index' @click='() => {
|
||||||
handleClick(index)
|
handleClick(index)
|
||||||
}'>
|
}'>
|
||||||
<text>{{ item?.companyName || '' }}</text>
|
<view class='c-flex-row'>
|
||||||
|
<text>{{ item?.companyName || '' }}</text>
|
||||||
|
<image v-if='index===currentIndex' src='/static/images/ic_checkmark_red.png' />
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
<view class='close-btn primary-button' @click='close'>
|
<view class='close-btn primary-button' @click='close'>
|
||||||
@ -17,7 +20,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang='ts' setup>
|
<script lang='ts' setup>
|
||||||
defineProps({
|
const props = defineProps({
|
||||||
companyList: {
|
companyList: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => []
|
default: () => []
|
||||||
@ -25,14 +28,19 @@ defineProps({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const popupRef = ref();
|
const popupRef = ref();
|
||||||
|
const currentIndex = ref(0);
|
||||||
let callback: Function;
|
let callback: Function;
|
||||||
|
|
||||||
const show = (fn: Function) => {
|
const show = (companyId: string, fn: Function) => {
|
||||||
|
if(companyId) {
|
||||||
|
currentIndex.value = props.companyList.findIndex(item => item.id === companyId);
|
||||||
|
}
|
||||||
callback = fn;
|
callback = fn;
|
||||||
popupRef.value.open();
|
popupRef.value.open();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleClick = (index: number) => {
|
const handleClick = (index: number) => {
|
||||||
|
currentIndex.value = index;
|
||||||
callback(index);
|
callback(index);
|
||||||
close();
|
close();
|
||||||
};
|
};
|
||||||
@ -68,6 +76,20 @@ defineExpose({
|
|||||||
font-size: 35rpx;
|
font-size: 35rpx;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
//padding: 20rpx 20rpx;
|
//padding: 20rpx 20rpx;
|
||||||
|
|
||||||
|
|
||||||
|
.c-flex-row {
|
||||||
|
text {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.store-item:after {
|
.store-item:after {
|
||||||
@ -81,6 +103,7 @@ defineExpose({
|
|||||||
.close-btn {
|
.close-btn {
|
||||||
background: #F5F5F5;
|
background: #F5F5F5;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -50,6 +50,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "register/index",
|
"path": "register/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "用户注册"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "register/reward",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "注册有礼"
|
"navigationBarTitleText": "注册有礼"
|
||||||
}
|
}
|
||||||
|
228
src/pages/common/register/reward.vue
Normal file
228
src/pages/common/register/reward.vue
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
<template>
|
||||||
|
<view class='content'>
|
||||||
|
<image class='bg-image' :src='assetsUrl("bg_register.png")' />
|
||||||
|
|
||||||
|
<image :src='assetsUrl("ic_register_gift_text.png")'
|
||||||
|
style='align-self: center;position: relative;width: 356rpx;height: 124rpx;margin-top: 70rpx' />
|
||||||
|
<view class='card-view'>
|
||||||
|
<view class='mobile-view c-flex-row' style='display: none'>
|
||||||
|
<image :src='assetsUrl("ic_register_mobile.png")' />
|
||||||
|
<input placeholder='请输入手机号' inputmode='number' maxLength='11' />
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class='captcha-view c-flex-row' style='display: none'>
|
||||||
|
<view class='c-flex-row'>
|
||||||
|
<image :src='assetsUrl("ic_register_captcha.png")' />
|
||||||
|
<input placeholder='请输入验证码' inputmode='number' maxLength='6' />
|
||||||
|
</view>
|
||||||
|
<text @click.stop='startCountdown'>{{ countdown }}</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<text class='btn_register' style='display: none' @click.stop='register'>注册领券</text>
|
||||||
|
|
||||||
|
<image :src='companyConfigInfo.regqrcode||defaultImage' :show-menu-by-longpress='true' mode='aspectFill'
|
||||||
|
style='width: 439rpx;height: 439rpx;align-self: center' />
|
||||||
|
<text style='font-size: 26rpx;
|
||||||
|
margin-top: 10rpx;
|
||||||
|
align-self: center;color: #666666;'>长按扫码注册
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<template v-if='couponBean&&couponBean.status==0'>
|
||||||
|
<view class='divider' />
|
||||||
|
<view class='coupon c-flex-column' @click.stop='goPath("/pages/mine/subs/coupon/index")'>
|
||||||
|
<view class='c-flex-row'>
|
||||||
|
<text class='coupon-name'>{{ couponBean.title }}</text>
|
||||||
|
<image :src='assetsUrl("ic_arrow_right_gray.png")' />
|
||||||
|
</view>
|
||||||
|
<text class='expired-time'>
|
||||||
|
有效期至{{ dayjs(Date.now()).add(couponBean.triggerEndDay, 'day').format('YYYY.MM.DD') }}
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
<view class='divider' />
|
||||||
|
|
||||||
|
<text style='font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333333;margin-top: 20rpx'>福利详情
|
||||||
|
</text>
|
||||||
|
<text style='font-size: 28rpx;
|
||||||
|
color: #333333;margin-top: 14rpx'>1.优惠金额{{ couponBean.reduce }}元\n
|
||||||
|
2.满{{ couponBean.threshold }}减{{ couponBean.reduce }}\n
|
||||||
|
3.赠送{{ couponBean.publicNum }}张
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<text style='font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333333;margin-top: 20rpx'>
|
||||||
|
微信扫一扫领取会员卡
|
||||||
|
</text>
|
||||||
|
<text style='font-size: 28rpx;
|
||||||
|
color: #333333;margin-top: 14rpx'>
|
||||||
|
1、及时接受消费小票\n
|
||||||
|
2、随时查询消费记录\n
|
||||||
|
3、及时接收优惠信息
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang='ts' setup>
|
||||||
|
import { assetsUrl, defaultImage } from '@/utils/assets';
|
||||||
|
import { useUserStore } from '@/store';
|
||||||
|
import { goPath } from '@/utils';
|
||||||
|
import { getRegisterCoupon } from '@/api/user';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
const { companyConfigInfo } = storeToRefs(userStore);
|
||||||
|
|
||||||
|
const countdown = ref('获取验证码');
|
||||||
|
const couponBean = ref();
|
||||||
|
|
||||||
|
onLoad(async (e) => {
|
||||||
|
couponBean.value = await getRegisterCoupon();
|
||||||
|
});
|
||||||
|
|
||||||
|
const startCountdown = () => {
|
||||||
|
if(countdown.value !== '获取验证码') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let time = 120;
|
||||||
|
let interval = setInterval(() => {
|
||||||
|
time--;
|
||||||
|
countdown.value = `${time}s 重新获取`;
|
||||||
|
if(time == 0) {
|
||||||
|
clearInterval(interval);
|
||||||
|
countdown.value = '获取验证码';
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
};
|
||||||
|
|
||||||
|
const register = () => {
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang='scss' scoped>
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-image {
|
||||||
|
position: fixed;
|
||||||
|
height: 100vh;
|
||||||
|
width: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-view {
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
margin: 0 40rpx;
|
||||||
|
padding: 50rpx;
|
||||||
|
top: 150rpx;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.mobile-view {
|
||||||
|
border-radius: 10rpx;
|
||||||
|
border: 1rpx solid #D8D8D8;
|
||||||
|
padding-left: 28rpx;
|
||||||
|
|
||||||
|
image {
|
||||||
|
width: 36rpx;
|
||||||
|
height: 36rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
flex: 1;
|
||||||
|
height: 80rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #333333;
|
||||||
|
margin-left: 26rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.captcha-view {
|
||||||
|
margin-top: 20rpx;
|
||||||
|
|
||||||
|
.c-flex-row {
|
||||||
|
border-radius: 10rpx;
|
||||||
|
border: 1rpx solid #D8D8D8;
|
||||||
|
padding-left: 28rpx;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
image {
|
||||||
|
width: 33rpx;
|
||||||
|
height: 26rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
height: 80rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #333333;
|
||||||
|
margin-left: 26rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
text {
|
||||||
|
display: flex;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #FFD436;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
margin-left: 12rpx;
|
||||||
|
padding: 0 15rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn_register {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 90rpx;
|
||||||
|
background: #F53636;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
margin-top: 46rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divider {
|
||||||
|
border-bottom-style: dashed;
|
||||||
|
border-color: #E98585;
|
||||||
|
border-width: 0.2rpx;
|
||||||
|
margin-top: 34rpx
|
||||||
|
}
|
||||||
|
|
||||||
|
.coupon {
|
||||||
|
margin-top: 30rpx;
|
||||||
|
|
||||||
|
.coupon-name {
|
||||||
|
display: flex;
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #D95554;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
width: 13rpx;
|
||||||
|
height: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expired-time {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
margin-top: 2rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -85,7 +85,7 @@ const submenuList = [
|
|||||||
{
|
{
|
||||||
title: '注册有礼',
|
title: '注册有礼',
|
||||||
icon: assetsUrl('ic_register_gift2.png'),
|
icon: assetsUrl('ic_register_gift2.png'),
|
||||||
path: '/pages/common/register/index'
|
path: '/pages/common/register/reward'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '团购秒杀',
|
title: '团购秒杀',
|
||||||
@ -139,7 +139,7 @@ onShow(async () => {
|
|||||||
|
|
||||||
const switchCompany = () => {
|
const switchCompany = () => {
|
||||||
fetchCompanyList((companyList: any[], userList: any[]) => {
|
fetchCompanyList((companyList: any[], userList: any[]) => {
|
||||||
companyDialogRef.value.show((index: number) => {
|
companyDialogRef.value.show(getCompanyId(),(index: number) => {
|
||||||
userStore.setUserInfo(userList[index]);
|
userStore.setUserInfo(userList[index]);
|
||||||
userStore.setCompanyInfo(companyList[index]);
|
userStore.setCompanyInfo(companyList[index]);
|
||||||
});
|
});
|
||||||
|
@ -4,6 +4,7 @@ import { getToken } from '@/utils/auth';
|
|||||||
const loginPage = '/pages/common/login/index';
|
const loginPage = '/pages/common/login/index';
|
||||||
// 页面白名单
|
// 页面白名单
|
||||||
const whiteList = ['/', '/pages/common/login/index', '/pages/home/index','/pages/common/register/index',
|
const whiteList = ['/', '/pages/common/login/index', '/pages/home/index','/pages/common/register/index',
|
||||||
|
'/pages/common/register/reward',
|
||||||
'/pages/mine/index','/pages/mine/subs/order/index'];
|
'/pages/mine/index','/pages/mine/subs/order/index'];
|
||||||
|
|
||||||
// 检查地址白名单
|
// 检查地址白名单
|
||||||
|
BIN
src/static/images/ic_checkmark_red.png
Normal file
BIN
src/static/images/ic_checkmark_red.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
@ -93,6 +93,7 @@ const useUserStore = defineStore('user', {
|
|||||||
resetInfo() {
|
resetInfo() {
|
||||||
this.$reset();
|
this.$reset();
|
||||||
},
|
},
|
||||||
|
|
||||||
// 获取用户信息
|
// 获取用户信息
|
||||||
async getProfile() {
|
async getProfile() {
|
||||||
const result = await getUserProfile();
|
const result = await getUserProfile();
|
||||||
@ -103,6 +104,10 @@ const useUserStore = defineStore('user', {
|
|||||||
this.companyConfigInfo = await getCompanyInfo();
|
this.companyConfigInfo = await getCompanyInfo();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
checkUserRegisterStatus() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
userRegister(registerForm: RegisterParams) {
|
userRegister(registerForm: RegisterParams) {
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
try {
|
try {
|
||||||
@ -136,7 +141,7 @@ const useUserStore = defineStore('user', {
|
|||||||
signature: wechatUserInfo?.signature,
|
signature: wechatUserInfo?.signature,
|
||||||
iv: wechatUserInfo.iv
|
iv: wechatUserInfo.iv
|
||||||
};
|
};
|
||||||
|
getApp().globalData?.logger.info('login params: ', userInfo);
|
||||||
const res = await login({
|
const res = await login({
|
||||||
code: result.code,
|
code: result.code,
|
||||||
userInfo: userInfo,
|
userInfo: userInfo,
|
||||||
@ -144,6 +149,7 @@ const useUserStore = defineStore('user', {
|
|||||||
// referrerUserId: '1727303781559697409'
|
// referrerUserId: '1727303781559697409'
|
||||||
// referrerUserId: getReferrerUserId()
|
// referrerUserId: getReferrerUserId()
|
||||||
});
|
});
|
||||||
|
getApp().globalData?.logger.info('login result: ', res);
|
||||||
|
|
||||||
if(res.user == undefined || res.user.id === null) {
|
if(res.user == undefined || res.user.id === null) {
|
||||||
const registerForm = {
|
const registerForm = {
|
||||||
@ -159,7 +165,9 @@ const useUserStore = defineStore('user', {
|
|||||||
gender: res.user?.gender,
|
gender: res.user?.gender,
|
||||||
storeId: getRegisterStoreId()
|
storeId: getRegisterStoreId()
|
||||||
};
|
};
|
||||||
|
getApp().globalData?.logger.info('register params: ', registerForm);
|
||||||
const registerResult = await this.userRegister(registerForm);
|
const registerResult = await this.userRegister(registerForm);
|
||||||
|
getApp().globalData?.logger.info('register result: ', registerResult);
|
||||||
if(registerResult != null) {
|
if(registerResult != null) {
|
||||||
setToken(res.token);
|
setToken(res.token);
|
||||||
await this.setUserInfo(registerResult as LoginResult);
|
await this.setUserInfo(registerResult as LoginResult);
|
||||||
|
Loading…
Reference in New Issue
Block a user