zhengyiming
2025-06-16 2caafed814dbbaf0905e77db91ed7835d8d854d9
fix: bug
2个文件已添加
11个文件已修改
309 ■■■■■ 已修改文件
.env.development 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
config/openapi.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/Account.ts 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/EnterpriseApplyFile.ts 32 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/ExternalSystem.ts 33 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/Home.ts 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/ParkBountyApply.ts 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/User.ts 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/index.ts 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/typings.d.ts 159 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/MaterialReview/MaterialReviewAudit.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/MaterialReview/MaterialReviewDetail.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/RewardDeclareDetail.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.env.development
@@ -11,8 +11,8 @@
VITE_ROUTER_HISTORY = "h5"
# 开发环境后端地址
VITE_PROXY_DOMAIN_REAL = "http://localhost:57190"
# VITE_PROXY_DOMAIN_REAL = "http://192.168.0.27:57190"
VITE_PROXY_DOMAIN_REAL = "http://localhost:57191"
# VITE_PROXY_DOMAIN_REAL = "http://192.168.0.27:57191"
# VITE_PROXY_DOMAIN_REAL = "https://testrlywx.boleyuma.com"
VITE_COMPRESSION = "none"
config/openapi.json
@@ -2,7 +2,7 @@
  "config": [
    {
      "requestLibPath": "import { request } from '@/utils/request'",
      "schemaPath": "http://localhost:57190/swagger/v1/swagger.json",
      "schemaPath": "http://localhost:57191/swagger/v1/swagger.json",
      "serversPath": "./src/services"
    }
  ]
src/services/api/Account.ts
@@ -131,6 +131,18 @@
  });
}
/** 创建临时访问令牌 POST /api/Account/CreateTempToken */
export async function createTempToken(body: API.CreateTempTokenInput, options?: API.RequestConfig) {
  return request<string>('/api/Account/CreateTempToken', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 管理员创建用户 POST /api/Account/CreateUserForAdmin */
export async function createUserForAdmin(
  body: API.CreateUserForAdminInput,
src/services/api/EnterpriseApplyFile.ts
@@ -32,6 +32,21 @@
  });
}
/** 删除客户四流材料 POST /api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile */
export async function deleteEnterpriseApplyUploadFile(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIdeleteEnterpriseApplyUploadFileParams,
  options?: API.RequestConfig
) {
  return request<any>('/api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile', {
    method: 'POST',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
/** 客户端删除按月上传单个文件 DELETE /api/EnterpriseApplyFile/DeleteMonthApplySingleFile */
export async function deleteMonthApplySingleFile(
  body: API.DeleteMonthApplySingleFileInput,
@@ -70,7 +85,7 @@
  body: API.GetCustomerUploadApplyFilesInput,
  options?: API.RequestConfig
) {
  return request<API.GetCustomerUploadApplyFilesOutput[]>(
  return request<API.GetCustomerUploadApplyFilesResponse>(
    '/api/EnterpriseApplyFile/GetCustomerUploadApplyFiles',
    {
      method: 'POST',
@@ -155,6 +170,21 @@
  );
}
/** 更新四流材料申报金额 POST /api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount */
export async function updateEnterpriseMonthApplyFileApplyAmount(
  body: API.UpdateEnterpriseMonthApplyFileApplyAmountInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 上传材料详情-编辑-上传文件 POST /api/EnterpriseApplyFile/UploadMonthApplySingleFiles */
export async function uploadMonthApplySingleFiles(
  body: API.UploadMonthApplySingleFilesInput,
src/services/api/ExternalSystem.ts
New file
@@ -0,0 +1,33 @@
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
/** 新增或修改外部系统 POST /api/ExternalSystem/CreateOrEditExternalSystem */
export async function createOrEditExternalSystem(
  body: API.ExternalSystemDto,
  options?: API.RequestConfig
) {
  return request<string>('/api/ExternalSystem/CreateOrEditExternalSystem', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 获取外部系统列表 POST /api/ExternalSystem/GetExternalSystemList */
export async function getExternalSystemList(
  body: API.GetExternalSystemInput,
  options?: API.RequestConfig
) {
  return request<API.ExternalSystemDtoPageOutput>('/api/ExternalSystem/GetExternalSystemList', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
src/services/api/Home.ts
New file
@@ -0,0 +1,13 @@
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request'
/** 此处后端没有提供注释 GET /api/health */
export async function (
  options?: API.RequestConfig) {
  return request<any>('/api/health', {
  method: 'GET',
    ...(options || {}),
  });
}
src/services/api/ParkBountyApply.ts
@@ -901,6 +901,24 @@
  });
}
/** 同步奖励金出账信息 POST /api/ParkBountyApply/SyncParkBountyApplyTrade */
export async function syncParkBountyApplyTrade(
  body: API.CreateParkBountyTradeInput,
  options?: API.RequestConfig
) {
  return request<API.SyncParkBountyApplyTradeOutput>(
    '/api/ParkBountyApply/SyncParkBountyApplyTrade',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 上传企业材料 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */
export async function uploadParkBountyApplyCompanyFile(
  body: API.UploadParkBountyApplyCompanyFileInput,
src/services/api/User.ts
@@ -49,7 +49,7 @@
/** 校验批量创建认证用户数据 POST /api/User/CheckBatchCreateCompanyUserData */
export async function checkBatchCreateCompanyUserData(
  body: API.CheckBatchCreateCompanyUserInput[],
  body: API.CheckBatchCreateCompanyUserDataInput,
  options?: API.RequestConfig
) {
  return request<API.CheckBatchCreateCompanyUserResult[]>(
@@ -425,6 +425,24 @@
  });
}
/** 此处后端没有提供注释 GET /api/User/GetUserBaseEnterpriseInfoThridpart */
export async function getUserBaseEnterpriseInfoThridpart(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetUserBaseEnterpriseInfoThridpartParams,
  options?: API.RequestConfig
) {
  return request<API.GetUserBaseEnterpriseInfoOutput>(
    '/api/User/GetUserBaseEnterpriseInfoThridpart',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
/** 获取用户证书申请状态 GET /api/User/GetUserBestSignUserRegStatus */
export async function getUserBestSignUserRegStatus(options?: API.RequestConfig) {
  return request<number>('/api/User/GetUserBestSignUserRegStatus', {
src/services/api/index.ts
@@ -24,11 +24,13 @@
import * as Customer from './Customer';
import * as EnterpriseApplyFile from './EnterpriseApplyFile';
import * as EnterpriseMaterial from './EnterpriseMaterial';
import * as ExternalSystem from './ExternalSystem';
import * as Features from './Features';
import * as FirstPartyCompany from './FirstPartyCompany';
import * as Fund from './Fund';
import * as HeadHunter from './HeadHunter';
import * as HelpQuestion from './HelpQuestion';
import * as Home from './Home';
import * as IdentityRole from './IdentityRole';
import * as IdentityUser from './IdentityUser';
import * as IdentityUserLookup from './IdentityUserLookup';
@@ -111,11 +113,13 @@
  Customer,
  EnterpriseApplyFile,
  EnterpriseMaterial,
  ExternalSystem,
  Features,
  FirstPartyCompany,
  Fund,
  HeadHunter,
  HelpQuestion,
  Home,
  IdentityRole,
  IdentityUser,
  IdentityUserLookup,
src/services/api/typings.d.ts
@@ -55,7 +55,7 @@
    /** 企业名称 */
    enterpriseName: string;
    /** 营业执照文件地址 */
    licenseUrl: string;
    licenseUrl?: string;
    /** 统一社会信用代码 */
    societyCreditCode: string;
    certificationMode?: UserCertificationModeEnum;
@@ -73,17 +73,20 @@
    payAmount?: number;
    /** 所属园区 */
    belongPark?: string;
    /** 银行卡号 */
    bankCardNumber?: string;
    certificationChannel?: UserCertificationChannelEnum;
    /** 用户名 */
    userName: string;
    /** 手机号 */
    phoneNumber: string;
    /** 联系人 */
    contact: string;
    contact?: string;
    /** 联系电话 */
    contactPhone: string;
    contactPhone?: string;
    /** 产业园区id */
    industrialParkId?: string;
    bankName?: string;
    bankBranchName?: string;
    bankCardNumber?: string;
  }
  interface AddEnterpriseMaterialFileInput {
@@ -239,6 +242,8 @@
    suportWithDraw?: boolean;
    /** 文件 */
    industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
  }
  interface AddIndustryBodyAuditInput {
@@ -602,7 +607,7 @@
    /** 企业名称 */
    enterpriseName: string;
    /** 营业执照文件地址 */
    licenseUrl: string;
    licenseUrl?: string;
    /** 统一社会信用代码 */
    societyCreditCode: string;
    certificationMode?: UserCertificationModeEnum;
@@ -620,6 +625,8 @@
    payAmount?: number;
    /** 所属园区 */
    belongPark?: string;
    /** 产业园区id */
    industrialParkId?: string;
    /** 银行卡号 */
    bankCardNumber?: string;
    certificationChannel?: UserCertificationChannelEnum;
@@ -1035,6 +1042,10 @@
    guid?: string;
  }
  interface APIdeleteEnterpriseApplyUploadFileParams {
    id?: string;
  }
  interface APIdeleteHeadHunterParams {
    id?: string;
  }
@@ -1366,6 +1377,7 @@
  interface APIgetEnterpriseLastUploadEnterPactFileNewParams {
    companyId?: string;
    parkBountyApplyId?: string;
  }
  interface APIgetEnterpriseLastUploadEnterPactFileParams {
@@ -1752,6 +1764,10 @@
  interface APIgetTrainingInfoParams {
    id?: string;
  }
  interface APIgetUserBaseEnterpriseInfoThridpartParams {
    userId?: string;
  }
  interface APIgetUserCanAuthProductListParams {
@@ -2338,6 +2354,10 @@
    /** 绑定邮箱地址 */
    bindEmailAddress?: string;
    canLoginUserSign?: CanLoginUserSignEnum;
    /** 是否可以登录江佑保 */
    canLoginJYB?: boolean;
    /** 外部系统ID */
    externalSystemCodes?: CanLoginUserSignEnum[];
    bussinessCode?: string;
  }
@@ -2755,7 +2775,7 @@
    walletAccountType?: WalletAccountTypeEnum;
  }
  type CanLoginUserSignEnum = 1 | 2 | -1;
  type CanLoginUserSignEnum = 1 | 2 | 3 | -1;
  interface CategoryAllDto {
    /** 类别Id */
@@ -2853,6 +2873,7 @@
    isPay?: boolean;
    /** 所属园区 */
    belongPark?: string;
    industrialParkId?: string;
    /** 注册时间 */
    registTime?: string;
    /** 账户是否锁住(是否禁用) */
@@ -2924,6 +2945,7 @@
    isPay?: boolean;
    /** 所属园区 */
    belongPark?: string;
    industrialParkId?: string;
    /** 注册时间 */
    registTime?: string;
    /** 账户是否锁住(是否禁用) */
@@ -3007,7 +3029,14 @@
  type ChargeTypeEnum = 1 | 2;
  interface CheckBatchCreateCompanyUserDataInput {
    list?: CheckBatchCreateCompanyUserInput[];
    isCheckUserExist?: boolean;
  }
  interface CheckBatchCreateCompanyUserInput {
    belongPark?: string;
    industrialParkId?: string;
    enterpriseName?: string;
    /** 统一社会信用代码 */
    societyCreditCode?: string;
@@ -3015,6 +3044,9 @@
    contact?: string;
    /** 手机号 */
    phoneNumber?: string;
    bankName?: string;
    bankBranchName?: string;
    bankCardNumber?: string;
  }
  interface CheckBatchCreateCompanyUserResult {
@@ -3873,6 +3905,8 @@
    /** 组织架构部门id */
    departmentOrgId?: string;
    password?: string;
    /** 产业园区id */
    industrialParkId?: string;
  }
  interface CreateBackClientUserInput {
@@ -4950,6 +4984,7 @@
    payFileUrl?: string;
    /** 消费类型 */
    payRemark?: string;
    access?: ParkBountyTradeAccessEnum;
  }
  interface CreateParkOrHRAdvertiseInput {
@@ -5090,6 +5125,11 @@
    successTime: string;
    /** 备注 */
    remark?: string;
  }
  interface CreateTempTokenInput {
    /** 用户Id */
    userId?: string;
  }
  interface CreateUserForAdminInput {
@@ -5440,6 +5480,8 @@
  interface CustomerUploadMonthApplyFileInput {
    withMonth?: string;
    /** 申报金额 */
    applyAmount?: number;
    fileTypes?: CustomerUploadMonthApplyFileType[];
  }
@@ -5953,6 +5995,25 @@
  interface ExtensionPropertyUiTableDto {
    isVisible?: boolean;
  }
  interface ExternalSystemDto {
    /** Id */
    id?: string;
    /** 系统名 */
    name?: string;
    /** ID */
    code?: string;
    /** 启用 */
    enabled?: boolean;
    /** 备注 */
    remark?: string;
  }
  interface ExternalSystemDtoPageOutput {
    pageModel?: Pagination;
    objectData?: any;
    data?: ExternalSystemDto[];
  }
  interface FailOrderInfo {
@@ -6630,6 +6691,7 @@
  interface GetCompanyNameListOutput {
    companyId?: string;
    name?: string;
    applyAmount?: number;
  }
  interface GetCooperationApplyInput {
@@ -6787,6 +6849,7 @@
    id?: string;
    enterpriseId?: string;
    withMonth?: string;
    parkBountyApplyId?: string;
  }
  interface GetCustomerUploadApplyFilesOutput {
@@ -6803,6 +6866,19 @@
    fileTypeName?: string;
    sort?: number;
    listFiles?: CustomerApplyFileDetailDto[];
  }
  interface GetCustomerUploadApplyFilesResponse {
    /** 所属月份 */
    withMonth?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 申报金额 */
    applyAmount?: number;
    /** 所属园区 */
    parkName?: string;
    /** 附件 */
    items?: GetCustomerUploadApplyFilesOutput[];
  }
  interface GetCustomerUploadFileRecordOutput {
@@ -6908,6 +6984,8 @@
    withMonth?: string;
    creationTime?: string;
    uploadStatus?: EnterpriseMonthUploadStatusEnum;
    /** 申报金额 */
    applyAmount?: number;
    applyStatus?: EnterpriseMonthApplyStatusEnum;
  }
@@ -7010,6 +7088,12 @@
    checkStatus?: EnterpriseRechargeStatusEnum;
    /** 提交日期 */
    creationTime?: string;
  }
  interface GetExternalSystemInput {
    pageModel?: Pagination;
    /** 关键字 */
    searchKey?: string;
  }
  interface GetFeatureListResultDto {
@@ -8353,6 +8437,7 @@
    tradeAmount?: number;
    /** 出账凭证 */
    payFileUrl?: string;
    access?: ParkBountyTradeAccessEnum;
    /** 消费类型 */
    payRemark?: string;
    /** 出账时间 */
@@ -10155,6 +10240,8 @@
    suportPlatRecharge?: boolean;
    /** 是否支持用户提现 */
    suportWithDraw?: boolean;
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
    /** 注册地址 */
    registerAddress?: string;
    /** 备注 */
@@ -10212,6 +10299,8 @@
    suportPlatRecharge?: boolean;
    /** 是否支持用户提现 */
    suportWithDraw?: boolean;
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
  }
  interface IndustrialParkListOutputPageOutput {
@@ -14772,6 +14861,8 @@
    parkTypeName?: string;
    /** 申请奖励金月份 */
    applyMonth?: string;
    /** 已保存企业缴税明细、营收汇总 */
    saveGatherFile?: boolean;
    /** 奖励金汇总金额 */
    applySumAmount?: number;
    /** 汇总明细表 */
@@ -14899,6 +14990,8 @@
    parkBountyApplyId?: string;
    parkBountyApplyDetailId?: string;
    enterpriseId?: string;
    /** 申报金额 */
    applyAmount?: number;
    userName?: string;
    /** 企业名称 */
    enterpriseName?: string;
@@ -15040,6 +15133,8 @@
    transferToAmount?: number;
    parkBountyApplyId?: string;
  }
  type ParkBountyTradeAccessEnum = 1;
  type ParkCustomersCountTypeEnum = 10 | 50 | 100;
@@ -16381,6 +16476,10 @@
    /** 绑定邮箱地址 */
    bindEmailAddress?: string;
    canLoginUserSign?: CanLoginUserSignEnum;
    /** 是否可以登录江佑保 */
    canLoginJYB?: boolean;
    /** 外部系统ID */
    externalSystemCodes?: CanLoginUserSignEnum[];
    bussinessCode?: string;
    /** 是否可以后台代发人资公司 */
    canPublishParkOrHR?: boolean;
@@ -18535,7 +18634,7 @@
  interface SetCanLoginUserSignInput {
    id?: string;
    canLoginUserSign?: CanLoginUserSignEnum;
    externalSystemCodes?: CanLoginUserSignEnum[];
    bussinessCode?: string;
  }
@@ -18726,12 +18825,18 @@
    enterpriseName?: string;
    societyCreditCode?: string;
    licenseUrl?: string;
    /** 用户Id */
    userId?: string;
    disabledSyncUser?: boolean;
  }
  interface SetUserEnterpriseBankInfoInput {
    bankName?: string;
    bankBranchName?: string;
    bankCardNumber?: string;
    /** 用户Id */
    userId?: string;
    disabledSyncUser?: boolean;
  }
  interface SetUserIndustrialParkInput {
@@ -19233,6 +19338,24 @@
    sequence?: number;
  }
  interface SyncParkBountyApplyTradeOutput {
    bountyAmount?: number;
    rechargeAmount?: number;
    details?: SyncParkBountyTradeDetailOutput[];
  }
  interface SyncParkBountyTradeDetailOutput {
    enterpriseId?: string;
    amount?: number;
    payType?: EnterpriseBountyPayTypeEnum;
    financeType?: FinanceTypeEnum;
    access?: ParkBountyTradeAccessEnum;
    payRemark?: string;
    remianAmount?: number;
    payFileUrl?: string;
    creationTime?: string;
  }
  interface SysOrgDetailOutput {
    id?: string;
    /** 组织名称 */
@@ -19723,7 +19846,7 @@
    /** 企业名称 */
    enterpriseName: string;
    /** 营业执照文件地址 */
    licenseUrl: string;
    licenseUrl?: string;
    /** 统一社会信用代码 */
    societyCreditCode: string;
    certificationMode?: UserCertificationModeEnum;
@@ -19741,6 +19864,8 @@
    payAmount?: number;
    /** 所属园区 */
    belongPark?: string;
    /** 产业园区id */
    industrialParkId?: string;
    /** 银行卡号 */
    bankCardNumber?: string;
    certificationChannel?: UserCertificationChannelEnum;
@@ -19816,6 +19941,12 @@
    /** 文件列表 */
    addEnterpriseMaterialFileList?: AddEnterpriseMaterialFileInput[];
    id?: string;
  }
  interface UpdateEnterpriseMonthApplyFileApplyAmountInput {
    id?: string;
    /** 申报金额 */
    applyAmount?: number;
  }
  interface UpdateFeatureDto {
@@ -19938,6 +20069,8 @@
    suportWithDraw?: boolean;
    /** 文件 */
    industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
    id?: string;
  }
@@ -20422,7 +20555,7 @@
    /** 企业名称 */
    enterpriseName: string;
    /** 营业执照文件地址 */
    licenseUrl: string;
    licenseUrl?: string;
    /** 统一社会信用代码 */
    societyCreditCode: string;
    certificationMode?: UserCertificationModeEnum;
@@ -20440,6 +20573,8 @@
    payAmount?: number;
    /** 所属园区 */
    belongPark?: string;
    /** 产业园区id */
    industrialParkId?: string;
    /** 银行卡号 */
    bankCardNumber?: string;
    certificationChannel?: UserCertificationChannelEnum;
@@ -21503,6 +21638,10 @@
    rewardEnable?: boolean;
    suportWithDraw?: boolean;
    isHasBountyApply?: boolean;
    /** 是否可以登录电子签 */
    canLoginUserSign?: boolean;
    /** 是否可以登录江佑保 */
    canLoginJYB?: boolean;
  }
  interface UserMessageInfo {
src/views/MaterialReview/MaterialReviewAudit.vue
@@ -252,7 +252,7 @@
async function openDialog(row: API.ParkBountyApplyDetailInfo) {
  try {
    const applyFiles = await queryClient.ensureQueryData({
    const applyFilesRes = await queryClient.ensureQueryData({
      queryKey: [
        'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
        row.enterpriseId,
@@ -281,7 +281,7 @@
    handleAdd({
      list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
        applyUploadFiles,
        applyFiles,
        applyFilesRes.items,
        lastUploadEnterPactFile
      ),
      companyId: row.enterpriseId,
src/views/MaterialReview/MaterialReviewDetail.vue
@@ -188,7 +188,7 @@
const queryClient = useQueryClient();
async function openDialog(row: API.ParkBountyApplyDetailInfo) {
  try {
    const applyFiles = await queryClient.ensureQueryData({
    const applyFilesRes = await queryClient.ensureQueryData({
      queryKey: [
        'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
        row.enterpriseId,
@@ -217,7 +217,7 @@
    handleAdd({
      list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
        applyUploadFiles,
        applyFiles,
        applyFilesRes.items,
        lastUploadEnterPactFile
      ),
      companyId: row.enterpriseId,
src/views/Reward/RewardDeclareDetail.vue
@@ -164,7 +164,7 @@
const queryClient = useQueryClient();
async function openDialog(row: API.ParkBountyApplyDetailInfo) {
  try {
    const applyFiles = await queryClient.ensureQueryData({
    const applyFilesRes = await queryClient.ensureQueryData({
      queryKey: [
        'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
        row.enterpriseId,
@@ -193,7 +193,7 @@
    handleAdd({
      list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
        applyUploadFiles,
        applyFiles,
        applyFilesRes.items,
        lastUploadEnterPactFile
      ),
      companyId: row.enterpriseId,