fix: 更新提现审核相关功能 更新账务报表页面功能

This commit is contained in:
ZhuRui
2026-08-05 17:34:01 +08:00
parent 8951733a2d
commit bc7e9169db
12 changed files with 374 additions and 168 deletions
+2 -1
View File
@@ -3,7 +3,7 @@ import { fetchOssSign } from '@/api/upload';
/**
* OSS 上传类型
* 1=证件照 2=赛事封面 3=头像 4=富文本 5=Banner
* 1=证件照 2=赛事封面 3=头像 4=富文本 5=Banner 6=提现审核
*/
export const OssUploadType = {
IdCard: '1',
@@ -11,6 +11,7 @@ export const OssUploadType = {
Avatar: '3',
RichText: '4',
Banner: '5',
WithdrawAudit: '6',
} as const;
export type OssUploadTypeValue = (typeof OssUploadType)[keyof typeof OssUploadType];