1 Star 0 Fork 2

jinglingxiansheng/通用刷题-uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
下次一定 提交于 2024-08-29 17:06 . 1
<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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jinglingxiansheng/general-answer-questions-uniapp.git
git@gitee.com:jinglingxiansheng/general-answer-questions-uniapp.git
jinglingxiansheng
general-answer-questions-uniapp
通用刷题-uniapp
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385