MaxKB/ui/src/views/system-shared/ModelSharedIndex.vue
wangdan-fit2cloud 1dab1ebc47 feat: model
2025-06-24 17:45:02 +08:00

39 lines
1.0 KiB
Vue

<template>
<div class="shared-model-manage">
<ContentContainer>
<template #header>
<el-breadcrumb separator-icon="ArrowRight">
<el-breadcrumb-item>{{ t('views.system.shared.shared_resources') }}</el-breadcrumb-item>
<el-breadcrumb-item>
<h5 class="ml-4 color-text-primary">{{ t('views.model.title') }}</h5>
</el-breadcrumb-item>
</el-breadcrumb>
</template>
<el-card style="--el-card-padding: 0">
<modelListContainer />
</el-card>
</ContentContainer>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref, computed } from 'vue'
import { t } from '@/locales'
import modelListContainer from '@/views/model/index.vue'
onMounted(() => {})
</script>
<style lang="scss" scoped>
.shared-model-manage {
padding: 8px 12px 8px 4px;
:deep(.model-list-height) {
height: calc(var(--app-main-height) - 70px);
padding-right: 0 !important;
}
:deep(.provider-list) {
height: calc(var(--app-main-height) - 70px);
}
}
</style>