2022-08-17 17:46:49 +08:00
|
|
|
<template>
|
2022-10-08 18:32:02 +08:00
|
|
|
<div>
|
|
|
|
<el-card class="topCard">
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-group v-model="active">
|
|
|
|
<el-radio-button class="topButton" size="large" @click="routerTo('/containers')" label="container">
|
2022-10-08 18:32:02 +08:00
|
|
|
{{ $t('container.container') }}
|
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button class="topButton" size="large" @click="routerTo('/containers/image')" label="image">
|
2022-10-08 18:32:02 +08:00
|
|
|
{{ $t('container.image') }}
|
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button
|
|
|
|
class="topButton"
|
|
|
|
size="large"
|
|
|
|
@click="routerTo('/containers/network')"
|
|
|
|
label="network"
|
|
|
|
>
|
2022-10-08 18:32:02 +08:00
|
|
|
{{ $t('container.network') }}
|
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button class="topButton" size="large" @click="routerTo('/containers/volume')" label="volume">
|
2022-10-11 17:46:52 +08:00
|
|
|
{{ $t('container.volume') }}
|
2022-10-08 18:32:02 +08:00
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button class="topButton" size="large" @click="routerTo('/containers/repo')" label="repo">
|
2022-10-09 16:17:15 +08:00
|
|
|
{{ $t('container.repo') }}
|
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button
|
|
|
|
class="topButton"
|
|
|
|
size="large"
|
|
|
|
@click="routerTo('/containers/compose')"
|
|
|
|
label="compose"
|
|
|
|
>
|
2022-10-17 09:10:06 +08:00
|
|
|
{{ $t('container.compose') }}
|
|
|
|
</el-radio-button>
|
2022-10-17 16:04:39 +08:00
|
|
|
<el-radio-button
|
|
|
|
class="topButton"
|
|
|
|
size="large"
|
|
|
|
@click="routerTo('/containers/template')"
|
|
|
|
label="template"
|
|
|
|
>
|
2022-10-17 09:10:06 +08:00
|
|
|
{{ $t('container.composeTemplate') }}
|
2022-10-08 18:32:02 +08:00
|
|
|
</el-radio-button>
|
2022-11-14 19:19:42 +08:00
|
|
|
<el-radio-button
|
|
|
|
class="topButton"
|
|
|
|
size="large"
|
|
|
|
@click="routerTo('/containers/setting')"
|
|
|
|
label="setting"
|
|
|
|
>
|
|
|
|
{{ $t('container.setting') }}
|
|
|
|
</el-radio-button>
|
2022-10-08 18:32:02 +08:00
|
|
|
</el-radio-group>
|
|
|
|
</el-card>
|
|
|
|
</div>
|
2022-08-17 17:46:49 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-10-17 16:04:39 +08:00
|
|
|
import { onMounted, ref } from 'vue';
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
const router = useRouter();
|
|
|
|
interface MenuProps {
|
|
|
|
activeName: string;
|
|
|
|
}
|
|
|
|
const props = withDefaults(defineProps<MenuProps>(), {
|
|
|
|
activeName: 'container',
|
|
|
|
});
|
|
|
|
|
2022-10-18 18:39:45 +08:00
|
|
|
const active = ref('container');
|
2022-10-17 16:04:39 +08:00
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (props.activeName) {
|
|
|
|
active.value = props.activeName;
|
|
|
|
}
|
|
|
|
});
|
2022-10-08 18:32:02 +08:00
|
|
|
|
2022-10-17 16:04:39 +08:00
|
|
|
const routerTo = (path: string) => {
|
|
|
|
router.push({ path: path });
|
|
|
|
};
|
2022-08-17 17:46:49 +08:00
|
|
|
</script>
|
2022-10-08 18:32:02 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.topCard {
|
|
|
|
--el-card-border-color: var(--el-border-color-light);
|
|
|
|
--el-card-border-radius: 4px;
|
|
|
|
--el-card-padding: 0px;
|
|
|
|
--el-card-bg-color: var(--el-fill-color-blank);
|
|
|
|
}
|
|
|
|
.topButton .el-radio-button__inner {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
|
|
|
background: var(--el-button-bg-color, var(--el-fill-color-blank));
|
|
|
|
border: 0;
|
|
|
|
font-weight: 350;
|
|
|
|
border-left: 0;
|
|
|
|
color: var(--el-button-text-color, var(--el-text-color-regular));
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
outline: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: var(--el-transition-all);
|
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
padding: 8px 15px;
|
|
|
|
font-size: var(--el-font-size-base);
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
</style>
|