添加空页面

This commit is contained in:
fofolee
2022-04-09 01:20:44 +08:00
parent 0ca153ac10
commit 431906a1bb
3 changed files with 36 additions and 15 deletions

View File

@@ -32,17 +32,23 @@ export default defineComponent({
}
// 默认主题色
this.setCssVar("primary", this.$profile.primaryColor);
// 进入插件
utools.onPluginEnter((enter) => {
// 暗黑模式
this.$q.dark.set(utools.isDarkColors());
// 路由跳转
quickcommand.enterData = enter;
this.$router.push({
path: enter.code,
query: {
timestamp: new Date().getTime(),
},
});
this.$router.push(enter.code);
});
// 退出插件
utools.onPluginOut(() => {
// 切到空路由
this.$router.push("loading");
// 保存偏好
this.$utools.putDB(
_.cloneDeep(this.$profile),
this.$utools.DBPRE.CFG + "preferences"
);
});
},
},

View File

@@ -0,0 +1,5 @@
<template>
<div>
<!-- loading... -->
</div>
</template>

View File

@@ -1,31 +1,41 @@
const routes = [
{
const routes = [{
path: '/configuration',
component: () => import('pages/ConfigurationPage.vue')
component: () =>
import ('pages/ConfigurationPage.vue')
},
{
path: '/code',
component: () => import('pages/RunCodePage.vue')
component: () =>
import ('pages/RunCodePage.vue')
},
{
path: '/newcommand',
component: () => import('pages/NewCommand.vue')
component: () =>
import ('pages/NewCommand.vue')
},
{
path: '/:type(default|files|key|regex|window|professional)_:uid(\\w+)',
component: () => import('pages/CommandPage.vue')
component: () =>
import ('pages/CommandPage.vue')
},
{
path: '/panel_:tags(\\w+)',
component: () => import('pages/ConfigurationPage.vue')
component: () =>
import ('pages/ConfigurationPage.vue')
},
{
path: '/needupdate',
name: 'needupdate',
props: true,
component: () => import('pages/updateWarningPage.vue')
component: () =>
import ('pages/updateWarningPage.vue')
},
{
path: '/loading',
component: () =>
import ('pages/LoadingPage.vue')
}
]
export default routes
export default routes