2级sidebar

This commit is contained in:
2025-12-13 15:56:12 +08:00
parent 3442f96214
commit b57a002de8
46 changed files with 1529 additions and 203 deletions

View File

@@ -0,0 +1,11 @@
<template>
<div class="agent">
<!-- 智能体管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./AgentView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="customer-chat">
<!-- 客服对话管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./CustomerChatView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="knowledge">
<!-- 知识库管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./KnowLedgeView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="knowledge-log">
<!-- 知识库日志管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./KnowledgeLogView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="system-log">
<!-- 系统日志管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./SystemLogView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="workcase-log">
<!-- 工单日志管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./WorkcaseLogView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="overview">
<!-- 数据概览视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./OverviewView.scss");
</style>

View File

@@ -0,0 +1,11 @@
<template>
<div class="workcase">
<!-- 工单管理视图 -->
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
@import url("./WorkcaseView.scss");
</style>