diff --git a/src/api/hr/org/type.ts b/src/api/hr/org/type.ts index 566d07992..d106e34a5 100644 --- a/src/api/hr/org/type.ts +++ b/src/api/hr/org/type.ts @@ -174,3 +174,7 @@ export interface criteriaForPeopleList{ adminorgname: string } export type archivesList = PageResult + +export interface msgAry { + msg:string[] +} diff --git a/src/api/hr/people/index.ts b/src/api/hr/people/index.ts index 76b0298ed..372d30bf9 100644 --- a/src/api/hr/people/index.ts +++ b/src/api/hr/people/index.ts @@ -356,3 +356,13 @@ import { data: data }); } +/** + * 获取人员档案 + */ + export function analysisRedisExelect(data?: any): AxiosPromise { + return request({ + url: '/hrapi/staff/analysisRedisExelect', + method: 'post', + data: data + }); +} diff --git a/src/types/components.d.ts b/src/types/components.d.ts index 204a38a0c..0029c5f4f 100644 --- a/src/types/components.d.ts +++ b/src/types/components.d.ts @@ -59,6 +59,7 @@ declare module '@vue/runtime-core' { ElOption: typeof import('element-plus/es')['ElOption'] ElPagination: typeof import('element-plus/es')['ElPagination'] ElPopover: typeof import('element-plus/es')['ElPopover'] + ElProgress: typeof import('element-plus/es')['ElProgress'] ElRadio: typeof import('element-plus/es')['ElRadio'] ElRadioButton: typeof import('element-plus/es')['ElRadioButton'] ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] diff --git a/src/views/hr/archives/index.vue b/src/views/hr/archives/index.vue index 71210933a..b53d8e188 100644 --- a/src/views/hr/archives/index.vue +++ b/src/views/hr/archives/index.vue @@ -4,19 +4,21 @@ @ 备注: 人员管理 -->