初始提交:OCI 面板前端(含 GenAI 网关一期)

This commit is contained in:
Wang Defa
2026-07-09 15:31:29 +08:00
commit db45a669e3
135 changed files with 25220 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<script setup lang="ts">
import { NButton } from 'naive-ui'
import { ref } from 'vue'
import ProxyPanel from '@/components/proxy/ProxyPanel.vue'
const panel = ref<InstanceType<typeof ProxyPanel> | null>(null)
</script>
<template>
<div class="flex flex-col gap-4 p-6 pb-8 max-md:p-3">
<div class="flex flex-wrap items-center gap-2.5">
<h1 class="page-title">代理</h1>
<span class="text-[13px] text-ink-3">出站代理管理,租户关联后 SDK 请求经代理发出</span>
<div class="ml-auto flex items-center gap-2">
<NButton size="small" @click="panel?.openImport()">批量导入</NButton>
<NButton size="small" type="primary" @click="panel?.openCreate()">新增代理</NButton>
</div>
</div>
<ProxyPanel ref="panel" />
</div>
</template>