feat: add admin permissions voice input analytics and feedback

This commit is contained in:
2026-08-11 17:17:59 +08:00
parent 3b9215cc3d
commit fd2da26d10
46 changed files with 1836 additions and 192 deletions

View File

@@ -1,6 +1,7 @@
import {
ElAlert,
ElButton,
ElCard,
ElCheckbox,
ElCollapse,
ElCollapseItem,
@@ -28,11 +29,13 @@ import {
ElTabs,
ElTag,
ElTooltip,
ElTree,
vLoading,
} from "element-plus";
import "element-plus/theme-chalk/base.css";
import "element-plus/theme-chalk/el-alert.css";
import "element-plus/theme-chalk/el-button.css";
import "element-plus/theme-chalk/el-card.css";
import "element-plus/theme-chalk/el-checkbox.css";
import "element-plus/theme-chalk/el-collapse.css";
import "element-plus/theme-chalk/el-date-picker.css";
@@ -60,6 +63,7 @@ import "element-plus/theme-chalk/el-table.css";
import "element-plus/theme-chalk/el-tabs.css";
import "element-plus/theme-chalk/el-tag.css";
import "element-plus/theme-chalk/el-tooltip.css";
import "element-plus/theme-chalk/el-tree.css";
import { createApp } from "vue";
import zhCn from "element-plus/es/locale/lang/zh-cn";
@@ -72,6 +76,7 @@ app.config.globalProperties.$ELEMENT = { locale: zhCn };
[
ElAlert,
ElButton,
ElCard,
ElCheckbox,
ElCollapse,
ElCollapseItem,
@@ -99,6 +104,7 @@ app.config.globalProperties.$ELEMENT = { locale: zhCn };
ElTabs,
ElTag,
ElTooltip,
ElTree,
].forEach((component) => {
app.use(component);
});