wupengfei
2025-09-23 5b9b534b7e4d39483dfa740c415b5b1777b064ed
Merge branch 'dev-v1.1.1' of http://120.26.58.240:8888/r/flexJobAdminBClient into dev-v1.1.1
1个文件已删除
4个文件已修改
184 ■■■■■ 已修改文件
src/constants/module.ts 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/store/modules/user.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/common/categoryUtils.ts 173 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/common/index.ts 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
types/api.d.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/constants/module.ts
@@ -1,3 +1,5 @@
import { defineColumns } from '@bole-core/components';
export enum SubModuleType {
  MenuButton = 1,
  /**
@@ -90,7 +92,7 @@
  [SubModuleType.Column]: FastColumnList,
};
export const ModuleColumns: API.CustomModuleColumnDto[] = [
export const ModuleColumns = defineColumns([
  {
    id: '1',
    enCode: 'name',
@@ -131,4 +133,4 @@
    name: '有效',
    width: 80,
  },
];
]);
src/store/modules/user.ts
@@ -50,7 +50,7 @@
    },
    userId(state) {
      return '';
      return state.userDetail?.id;
    },
  },
  actions: {
src/utils/common/categoryUtils.ts
File was deleted
src/utils/common/index.ts
@@ -12,7 +12,6 @@
export * from './tree';
export * from './file';
export * from './vueHelper';
export * from './categoryUtils';
export * from './encrypt';
export * from './deepClone';
export * from './pdf';
types/api.d.ts
@@ -14,7 +14,7 @@
    customErrorHandler?: (error: any) => boolean;
  }
    interface AreaTreeNode  {
  interface AreaTreeNode  {
    children?: AreaTreeNode[];
    /** 编码 */
    areaCode?: string;