代码拉取完成,页面将自动刷新
同步操作将从 贵州猿创科技有限责任公司/通用刷题-uniapp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<script setup>
import { onLaunch } from "@dcloudio/uni-app"
import { $http, useStorage } from "@/utils";
import { useWebConfigStore, useTabbarStore, useUserStore } from "@/stores";
import system from "@/utils/system";
// #ifdef H5
import { replaceUrlParam } from '@/utils/functions'
// #endif
onLaunch((options) => {
const appid = options.query?.appid || system.appid();
if (appid) {
useStorage().set('APPID', appid)
}
const pid = options.query?.id;
if (pid && !useStorage().get('PID.' + appid)) {
useStorage().set('PID.' + appid, pid);
}
useUserStore().initUserInfo()
$http.get('Config/getConfig').then(res => {
useWebConfigStore().setWebConfig(res.data)
if (res.data.custom_tabbar == 1) {
uni.hideTabBar()
$http.get('Nav/getTabbar').then(res1 => {
useTabbarStore().setTabbar(res1.data)
})
}
uni.$emit('initConfig')
}).catch(err => {
uni.showModal({
title: '温馨提示',
content: '系统配置项错误'
})
})
const scene = options.query?.scene;
if (scene) {
const sceneArr = decodeURIComponent(scene).split('&');
const sceneObj = {};
sceneArr.forEach(item => {
const arr = item.split('=');
sceneObj[arr[0]] = arr[1];
})
if (sceneObj.pid) {
useStorage().set('PID.' + appid, sceneObj.pid);
}
}
const {setUserInfo} =useUserStore()
let token = options.query?.token;
if (token) {
setUserInfo({ token: token }).then(() => {
replaceUrlParam('token', '')
}).catch(() => { });
}
})
</script>
<style lang="scss">
/*每个页面公共css */
@import "static/yy.scss";
@import "static/color.scss";
page {
background-color: #FAFAFD;
}
.btn-normal {
display: block;
margin: 0;
padding: 0;
line-height: normal;
background: none;
border-radius: 0;
box-shadow: none;
border: none;
font-size: unset;
text-align: unset;
overflow: visible;
color: inherit;
}
.btn-normal:after {
border: none;
}
.btn-normal.button-hover {
color: inherit;
}
button:after {
content: none;
border: none;
}
.icon {
width: 24px;
height: 24px;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。