Files
urbanLifeline/urbanLifelineWeb/packages/workcase/src/views/admin/overview/OverviewView.vue
2025-12-13 18:44:28 +08:00

69 lines
2.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<AdminLayout
:title="数据概览"
>
<template action>
<span>泰豪小电智能客服运营数据</span>
</template>
<template default>
<div>
<!-- 中间区域 -->
<div>
<!-- 信息卡 -->
<div>
<!-- 咨询次数 点击跳转 对话数据 -->
</div>
<div>
<!-- 待处理工单 点击跳转 工单管理选择待处理的选项 -->
</div>
<div>
<!-- 已处理工单 点击跳转 工单管理选择已处理的选项-->
</div>
</div>
<div>
<div>
<!-- 问题分类统计 -->
<span></span>
<div>
<!-- 时间范围选择 -->
</div>
</div>
<div>
<!-- 词云 -->
<span></span>
<div>
<!-- 词云图 -->
</div>
</div>
</div>
<div>
<!-- 快捷入口固定在底部 -->
<span></span>
<div>
<div>
<!-- 知识库管理 点击跳转 知识库管理 -->
</div>
<div>
<!-- 工单管理 点击跳转 工单管理 -->
</div>
<div>
<!-- 对话数据 点击跳转 对话数据管理 -->
</div>
<div>
<!-- 智能体管理 点击跳转 智能体管理 -->
</div>
</div>
</div>
</div>
</template>
</AdminLayout>
</template>
<script setup lang="ts">
import AdminLayout from '@/views/admin/AdminLayout.vue';
</script>
<style lang="scss" scoped>
@import url("./OverviewView.scss");
</style>