2022-08-17 17:46:49 +08:00
|
|
|
<template>
|
2022-09-27 16:57:23 +08:00
|
|
|
<div>
|
2022-09-22 16:16:04 +08:00
|
|
|
<el-row :gutter="20">
|
2022-09-26 16:32:40 +08:00
|
|
|
<el-col :span="24">
|
|
|
|
<div style="margin-bottom: 10px">
|
2022-10-12 10:54:09 +08:00
|
|
|
<el-check-tag :checked="activeName === 'all'" @click="routerTo('/apps/all')">
|
|
|
|
{{ $t('app.all') }}
|
|
|
|
</el-check-tag>
|
|
|
|
<el-check-tag :checked="activeName === 'installed'" @click="routerTo('/apps/installed')">
|
|
|
|
{{ $t('app.installed') }}
|
|
|
|
</el-check-tag>
|
2022-09-22 16:16:04 +08:00
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
2022-09-27 16:57:23 +08:00
|
|
|
<LayoutContent>
|
|
|
|
<router-view></router-view>
|
|
|
|
</LayoutContent>
|
|
|
|
</div>
|
2022-08-17 17:46:49 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import LayoutContent from '@/layout/layout-content.vue';
|
2022-09-27 16:57:23 +08:00
|
|
|
import { onMounted, ref } from 'vue';
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
const router = useRouter();
|
2022-09-26 16:32:40 +08:00
|
|
|
const activeName = ref('all');
|
|
|
|
|
2022-09-27 16:57:23 +08:00
|
|
|
const routerTo = (path: string) => {
|
|
|
|
router.push({ path: path });
|
2022-09-22 16:16:04 +08:00
|
|
|
};
|
2022-09-27 16:57:23 +08:00
|
|
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|
2022-08-17 17:46:49 +08:00
|
|
|
</script>
|
2022-09-22 16:16:04 +08:00
|
|
|
|
2022-10-12 10:54:09 +08:00
|
|
|
<style lang="scss"></style>
|