MaxKB/ui/src/views/system-shared/ModelSharedIndex.vue
wangdan-fit2cloud 082cfaaada
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run
fix: fix code bug
2025-08-19 19:08:57 +08:00

38 lines
1014 B
Vue

<template>
<div class="shared-model-manage">
<ContentContainer>
<template #header>
<el-breadcrumb separator-icon="ArrowRight">
<el-breadcrumb-item>{{ $t('views.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 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>