style(@vben/web-antd): lint 自动格式化项目管理页面

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lzh
2026-04-16 23:11:06 +08:00
parent 44b2dd9d05
commit 93bfef06a4
3 changed files with 6 additions and 13 deletions

View File

@@ -10,10 +10,7 @@ import { isEmpty } from '@vben/utils';
import { message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
deleteProject,
getProjectPage,
} from '#/api/system/project';
import { deleteProject, getProjectPage } from '#/api/system/project';
import { $t } from '#/locales';
import { useGridColumns, useGridFormSchema } from './data';

View File

@@ -8,11 +8,7 @@ import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { useVbenForm } from '#/adapter/form';
import {
createProject,
getProject,
updateProject,
} from '#/api/system/project';
import { createProject, getProject, updateProject } from '#/api/system/project';
import { $t } from '#/locales';
import { useFormSchema } from '../data';

View File

@@ -39,6 +39,10 @@ interface AccessState {
* 登录是否过期
*/
loginExpired: boolean;
/**
* 当前项目编号
*/
projectId: null | number;
/**
* 登录 accessToken
*/
@@ -51,10 +55,6 @@ interface AccessState {
* 访问租户编号
*/
visitTenantId: null | number;
/**
* 当前项目编号
*/
projectId: null | number;
}
/**