Merge branch 'master' of http://120.26.58.240:8888/r/flexJobAdmin
| | |
| | | readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']> |
| | | readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']> |
| | | } |
| | | } |
| | | } |
| | |
| | | import * as ocrUtils from './ocrUtils'; |
| | | import * as dictionary from './dictionary'; |
| | | import * as userResume from './userResume'; |
| | | import * as fileUtils from './fileUtils'; |
| | | import * as auth from './auth'; |
| | | import * as taskCheckReceive from './taskCheckReceive'; |
| | | import * as resource from './resource'; |
| | | import * as taskUser from './taskUser'; |
| | | import * as menu from './menu'; |
| | | import * as fileUtils from './fileUtils'; |
| | | export default { |
| | | enterpriseEmployee, |
| | | user, |
| | |
| | | ocrUtils, |
| | | dictionary, |
| | | userResume, |
| | | fileUtils, |
| | | auth, |
| | | taskCheckReceive, |
| | | resource, |
| | |
| | | }, |
| | | { |
| | | showLoading: false, |
| | | skipErrorHandler: true, |
| | | } |
| | | ); |
| | | if (res) { |
| | |
| | | tabType: '', |
| | | }, |
| | | }); |
| | | |
| | | async function getPersonalUserInfoSignContracts(id: string) { |
| | | try { |
| | | return await userServices.getPersonalUserInfoSignContracts({ id: id }); |
| | | } catch (error) {} |
| | | } |
| | | </script> |
| | |
| | | }); |
| | | } catch (error) { |
| | | console.log(error); |
| | | ElMessage({ |
| | | message: '用户名或密码错误!', |
| | | type: 'error', |
| | | }); |
| | | // ElMessage({ |
| | | // message: '用户名或密码错误!', |
| | | // type: 'error', |
| | | // }); |
| | | } |
| | | }; |
| | | const beforeLog = useDebounceFn(onLogin, 1000); |
| | |
| | | <template> |
| | | <LoadingLayout :loading="state.loading"> |
| | | <AppContainer> |
| | | <ProTableV2 v-bind="proTableProps" :columns="signColumns" :operationBtns="signOperationBtns"> |
| | | <ProTableV2 v-bind="proTableProps" :columns="signColumns" :showOperationColumn="false"> |
| | | </ProTableV2> |
| | | </AppContainer> |
| | | </LoadingLayout> |
| | |
| | | |
| | | <script setup lang="ts"> |
| | | import { ProTableV2, LoadingLayout, AppContainer, useTable } from '@bole-core/components'; |
| | | import * as taskServices from '@/services/api/task'; |
| | | import * as userResumeServices from '@/services/api/userResume'; |
| | | |
| | | defineOptions({ |
| | | name: 'SignDetailView', |
| | |
| | | } = useTable( |
| | | async ({ pageIndex, pageSize }, extraParamState) => { |
| | | try { |
| | | let params: API.GetTaskInfosQuery = { |
| | | let params: API.GetUserResumesQuery = { |
| | | pageModel: { |
| | | rows: pageSize, |
| | | page: pageIndex, |
| | | orderInput: extraParamState.orderInput, |
| | | }, |
| | | enterpriseId: id, |
| | | taskInfoId: id, |
| | | }; |
| | | let res = await taskServices.getTaskInfos(params, { |
| | | let res = await userResumeServices.getUserResumes(params, { |
| | | showLoading: !state.loading, |
| | | }); |
| | | return res; |
| | |
| | | defaultExtraParams: { |
| | | orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }], |
| | | }, |
| | | columnsRenderProps: {}, |
| | | columnsRenderProps: { |
| | | hireStatus: { type: 'enum', valueEnum: EnumTaskUserHireStatusText }, |
| | | gender: { type: 'enum', valueEnum: EnumUserGenderText }, |
| | | }, |
| | | } |
| | | ); |
| | | </script> |