mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 01:34:47 +08:00
feat: 增加页面路由组件
This commit is contained in:
parent
0e6530f0cc
commit
b59225af1e
33
frontend/components.d.ts
vendored
Normal file
33
frontend/components.d.ts
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// generated by unplugin-vue-components
|
||||||
|
// We suggest you to commit this file into source control
|
||||||
|
// Read more: https://github.com/vuejs/vue-next/pull/3399
|
||||||
|
|
||||||
|
declare module 'vue' {
|
||||||
|
export interface GlobalComponents {
|
||||||
|
403: typeof import('./src/components/error-message/403.vue')['default']
|
||||||
|
404: typeof import('./src/components/error-message/404.vue')['default']
|
||||||
|
500: typeof import('./src/components/error-message/500.vue')['default']
|
||||||
|
AppLayout: typeof import('./src/components/app-layout/index.vue')['default']
|
||||||
|
AppStatus: typeof import('./src/components/app-status/index.vue')['default']
|
||||||
|
BackButton: typeof import('./src/components/back-button/index.vue')['default']
|
||||||
|
BreadCrumbs: typeof import('./src/components/bread-crumbs/index.vue')['default']
|
||||||
|
BreadCrumbsItem: typeof import('./src/components/bread-crumbs/bread-crumbs-item.vue')['default']
|
||||||
|
CardWithHeader: typeof import('./src/components/card-with-header/index.vue')['default']
|
||||||
|
Codemirror: typeof import('./src/components/codemirror-dialog/codemirror.vue')['default']
|
||||||
|
ComplexTable: typeof import('./src/components/complex-table/index.vue')['default']
|
||||||
|
ConfirmDialog: typeof import('./src/components/confirm-dialog/index.vue')['default']
|
||||||
|
ContainerLog: typeof import('./src/components/container-log/index.vue')['default']
|
||||||
|
DrawerHeader: typeof import('./src/components/drawer-header/index.vue')['default']
|
||||||
|
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
||||||
|
FileList: typeof import('./src/components/file-list/index.vue')['default']
|
||||||
|
FileRole: typeof import('./src/components/file-role/index.vue')['default']
|
||||||
|
Footer: typeof import('./src/components/app-layout/footer/index.vue')['default']
|
||||||
|
Logo: typeof import('./src/components/app-layout/menu/components/Logo.vue')['default']
|
||||||
|
Menu: typeof import('./src/components/app-layout/menu/index.vue')['default']
|
||||||
|
Status: typeof import('./src/components/status/index.vue')['default']
|
||||||
|
SubItem: typeof import('./src/components/app-layout/menu/components/sub-item.vue')['default']
|
||||||
|
SvgIcon: typeof import('./src/components/svg-icon/svg-icon.vue')['default']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export { }
|
103
frontend/src/components/router-button/index.vue
Normal file
103
frontend/src/components/router-button/index.vue
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
<template>
|
||||||
|
<el-card class="router_card">
|
||||||
|
<el-radio-group v-model="activeName" @change="handleChange">
|
||||||
|
<el-radio-button
|
||||||
|
class="router_card_button"
|
||||||
|
:label="button.label"
|
||||||
|
v-for="(button, index) in buttonArray"
|
||||||
|
size="large"
|
||||||
|
:key="index"
|
||||||
|
></el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { computed, onMounted, ref } from 'vue';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
defineOptions({ name: 'RouterButton' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
buttons: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const buttonArray: any = computed(() => {
|
||||||
|
return props.buttons;
|
||||||
|
});
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const activeName = ref('');
|
||||||
|
const routerToPath = (path: string) => {
|
||||||
|
router.push({ path: path });
|
||||||
|
};
|
||||||
|
const routerToName = (name: string) => {
|
||||||
|
router.push({ name: name });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleChange = (label: string) => {
|
||||||
|
buttonArray.value.forEach((btn: RouterButton) => {
|
||||||
|
if (btn.label == label) {
|
||||||
|
if (btn.path) {
|
||||||
|
routerToPath(btn.path);
|
||||||
|
} else if (btn.name) {
|
||||||
|
routerToName(btn.name);
|
||||||
|
}
|
||||||
|
activeName.value = btn.label;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
const nowPath = router.currentRoute.value.path;
|
||||||
|
if (buttonArray.value.length > 0) {
|
||||||
|
let isPathExist = false;
|
||||||
|
buttonArray.value.forEach((btn: RouterButton) => {
|
||||||
|
if (btn.path == nowPath) {
|
||||||
|
isPathExist = true;
|
||||||
|
activeName.value = btn.label;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (!isPathExist) {
|
||||||
|
activeName.value = buttonArray.value[0].label;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.router_card {
|
||||||
|
--el-card-border-radius: 8px;
|
||||||
|
--el-card-padding: 0;
|
||||||
|
padding: 0px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-top: 2px;
|
||||||
|
}
|
||||||
|
.router_card_button {
|
||||||
|
margin-left: 2px;
|
||||||
|
.el-radio-button__inner {
|
||||||
|
min-width: 100px;
|
||||||
|
height: 100%;
|
||||||
|
border: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $primary-color;
|
||||||
|
background-color: #ffffff;
|
||||||
|
box-shadow: 0 0 0 2px $primary-color !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-radio-button:first-child .el-radio-button__inner {
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $primary-color;
|
||||||
|
background-color: #ffffff;
|
||||||
|
box-shadow: 0 0 0 2px $primary-color !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -73,12 +73,6 @@ const showBack = computed(() => {
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@use '@/styles/mixins.scss' as *;
|
@use '@/styles/mixins.scss' as *;
|
||||||
|
|
||||||
.content-container__header {
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-container__app {
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-container__search {
|
.content-container__search {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
8
frontend/src/typings/global.d.ts
vendored
8
frontend/src/typings/global.d.ts
vendored
@ -1,4 +1,3 @@
|
|||||||
// * Menu
|
|
||||||
declare namespace Menu {
|
declare namespace Menu {
|
||||||
interface MenuOptions {
|
interface MenuOptions {
|
||||||
path: string;
|
path: string;
|
||||||
@ -10,7 +9,6 @@ declare namespace Menu {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// * Vite
|
|
||||||
declare type Recordable<T = any> = Record<string, T>;
|
declare type Recordable<T = any> = Record<string, T>;
|
||||||
|
|
||||||
declare interface ViteEnv {
|
declare interface ViteEnv {
|
||||||
@ -23,3 +21,9 @@ declare interface ViteEnv {
|
|||||||
VITE_BUILD_GZIP: boolean;
|
VITE_BUILD_GZIP: boolean;
|
||||||
VITE_REPORT: boolean;
|
VITE_REPORT: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare interface RouterButton {
|
||||||
|
label: string;
|
||||||
|
path?: string;
|
||||||
|
name?: string;
|
||||||
|
}
|
||||||
|
@ -1,15 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-card class="topRouterCard">
|
<RouterButton :buttons="buttons" />
|
||||||
<el-radio-group v-model="activeName" @change="handleChange">
|
|
||||||
<el-radio-button class="topRouterButton" size="default" label="all">
|
|
||||||
{{ $t('app.all') }}
|
|
||||||
</el-radio-button>
|
|
||||||
<el-radio-button class="topRouterButton" size="default" label="installed">
|
|
||||||
{{ $t('app.installed') }}
|
|
||||||
</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-card>
|
|
||||||
<br />
|
<br />
|
||||||
<LayoutContent>
|
<LayoutContent>
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
@ -19,37 +10,17 @@
|
|||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import LayoutContent from '@/layout/layout-content.vue';
|
import LayoutContent from '@/layout/layout-content.vue';
|
||||||
import { onMounted, ref } from 'vue';
|
import RouterButton from '@/components/router-button/index.vue';
|
||||||
import { useRouter } from 'vue-router';
|
import i18n from '@/lang';
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const activeName = ref('all');
|
const buttons = [
|
||||||
|
{
|
||||||
const routerTo = (path: string) => {
|
label: i18n.global.t('app.all'),
|
||||||
router.push({ path: path });
|
path: '/apps/all',
|
||||||
};
|
},
|
||||||
|
{
|
||||||
const handleChange = (val: string) => {
|
label: i18n.global.t('app.installed'),
|
||||||
switch (val) {
|
path: '/apps/installed',
|
||||||
case 'all':
|
},
|
||||||
routerTo('/apps/all');
|
];
|
||||||
break;
|
|
||||||
case 'installed':
|
|
||||||
routerTo('/apps/installed');
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
const path = router.currentRoute.value.path;
|
|
||||||
if (path === '/apps/all') {
|
|
||||||
activeName.value = 'all';
|
|
||||||
}
|
|
||||||
if (path === '/apps/installed') {
|
|
||||||
activeName.value = 'installed';
|
|
||||||
}
|
|
||||||
if (path === '/apps') {
|
|
||||||
routerTo('/apps/all');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user