【修复】api部分参数错误

This commit is contained in:
chudong
2025-05-19 11:40:06 +08:00
parent 15c75521da
commit 37d19aceb4
65 changed files with 75 additions and 68 deletions

View File

@@ -63,7 +63,7 @@
/* 子路由导航样式 */
.subRouteNav {
@apply mb-4 p-4 bg-white rounded-lg shadow-sm;
@apply mb-4 p-4 rounded-lg shadow-sm;
}
/* 子路由标题样式 */
@@ -73,5 +73,5 @@
/* 子路由面包屑样式 */
.breadcrumb {
@apply bg-white p-3 rounded-lg shadow-sm mb-4;
@apply p-3 rounded-lg shadow-sm mb-4;
}

View File

@@ -5,16 +5,16 @@ import { RouterView } from 'vue-router'
import { $t } from '@locales/index'
import { useThemeCssVar } from '@baota/naive-ui/theme'
import { MenuFoldOutlined, MenuUnfoldOutlined } from '@vicons/antd'
// import ThemeTips from '@baota/naive-ui/components/themeTips'
import { useController } from './useController'
import styles from './index.module.css'
// import ThemeTips from '@baota/naive-ui/components/themeTips'
export default defineComponent({
setup() {
// 获取控制器中的状态和方法
const { menuItems, menuActive, isCollapsed, toggleCollapse, handleExpand, handleCollapse, updateMenuActive } =
useController()
// 获取主题变量
const cssVars = useThemeCssVar(['cardColor', 'headerColor', 'contentColor'])