From ba48054b6f2680cfa1a0b3b912880925a8b5861b Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 13 八月 2025 15:33:47 +0800 Subject: [PATCH] fix: 验收管理 --- packages/hooks/setting.ts | 47 ++++++++++++++++++++++++++++++----------------- 1 files changed, 30 insertions(+), 17 deletions(-) diff --git a/packages/hooks/setting.ts b/packages/hooks/setting.ts index 1ec28eb..8830255 100644 --- a/packages/hooks/setting.ts +++ b/packages/hooks/setting.ts @@ -1,5 +1,5 @@ import { useQuery } from '@tanstack/vue-query'; -import { MaybeRef, Ref, unref } from 'vue'; +import { MaybeRef, Ref, unref, ref } from 'vue'; import { BusinessSettingType, TempFolderPath } from '@12333/constants'; type UseBusinessSettingByTypeOptions<T extends object = object, TData = T> = { @@ -44,19 +44,32 @@ offlinePayEndDays: number; }; -// export function useUserCertificationSetting() { -// const { businessSetting } = useBusinessSettingByType<UserCertificationSetting>({ -// type: BusinessSettingType.UserCertification, -// select(data: any) { -// return { -// ...data, -// enterprisePowerAttorneyTempPath: `${TempFolderPath}${data.enterprisePowerAttorneyTempPath}`, -// idPhoteTempPath: `${TempFolderPath}${data.idPhoteTempPath}`, -// payAmount: data.userCertificationAmount, -// }; -// }, -// }); -// return { -// userCertificationSetting: businessSetting, -// }; -// } +export function useUserCertificationSetting() { + // const { businessSetting } = useBusinessSettingByType<UserCertificationSetting>({ + // type: BusinessSettingType.UserCertification, + // select(data: any) { + // return { + // ...data, + // enterprisePowerAttorneyTempPath: `${TempFolderPath}${data.enterprisePowerAttorneyTempPath}`, + // idPhoteTempPath: `${TempFolderPath}${data.idPhoteTempPath}`, + // payAmount: data.userCertificationAmount, + // }; + // }, + // }); + + const businessSetting = ref({ + authenticationHelpUrl: '', + receivingAccount: '', + receivingCompanyName: '', + receivingBankName: '', + offlinePayEndTime: '', + offlinePayEndDays: 1, + enterprisePowerAttorneyTempPath: `${TempFolderPath}`, + idPhoteTempPath: `${TempFolderPath}`, + payAmount: 123, + }); + + return { + userCertificationSetting: businessSetting, + }; +} -- Gitblit v1.9.1