mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-12 01:30:09 +08:00
【修复】api部分参数错误
This commit is contained in:
@@ -121,8 +121,6 @@ export const useAuthApiManageStore = defineStore('auth-api-manage-store', () =>
|
||||
}
|
||||
|
||||
return {
|
||||
// 状态
|
||||
times,
|
||||
apiFormProps,
|
||||
accessTypeMap,
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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'])
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ export default defineComponent({
|
||||
<NGrid cols="2 s:1 m:2" xGap={16} yGap={16}>
|
||||
{channelConfigs.map((item) => (
|
||||
<NGridItem key={item.type}>
|
||||
<div class="flex justify-between items-center p-4 border rounded-md hover:shadow-sm transition-shadow">
|
||||
<div class="flex justify-between items-center p-4 border border-[var(--n-border-color)] rounded-md hover:shadow-sm transition-shadow">
|
||||
<div class="flex items-center">
|
||||
<SvgIcon icon={`notify-${item.type}`} size="3rem" />
|
||||
<div class="ml-4">
|
||||
|
||||
@@ -43,7 +43,7 @@ export default defineComponent({
|
||||
<div class="w-full">
|
||||
<NCard>
|
||||
<NTabs
|
||||
class="bg-white rounded-2xl p-6"
|
||||
class="rounded-2xl p-6"
|
||||
type="segment"
|
||||
v-model:value={activeTab.value}
|
||||
size="large"
|
||||
|
||||
Reference in New Issue
Block a user