zhengyiming
2 天以前 e1aeb653d656b3c3be05f06cac212f435cec07c3
Merge branch 'dev-3.4.2.5' of http://120.26.58.240:8888/r/12333GovernmentWeb into dev-3.4.2.5
6个文件已修改
75 ■■■■ 已修改文件
src/constants/fourStreams.ts 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/services/api/typings.d.ts 60 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/FinancialApproval.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/RewardApplyTradeCheck.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/RewardGrantRegister.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/constants/columns.ts 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/constants/fourStreams.ts
@@ -104,17 +104,18 @@
    id: '5',
    enCode: 'authType',
    name: '企业类型',
    width: 120,
  },
  {
    id: '6',
    enCode: 'licenseUrl',
    name: '营业执照',
    width: 120,
  },
  {
    id: '7',
    enCode: 'bankAccountInfo',
    name: '基本户信息',
    width: 300,
  },
]);
src/services/api/typings.d.ts
@@ -4130,6 +4130,16 @@
    industrialParkIds?: string[];
    /** 角色 */
    roleNames?: string[];
    /** 是否理赔提醒 */
    sendClaimMessage?: boolean;
    /** 是否保单到期提醒 */
    sendBillExpireMessage?: boolean;
    /** 是否短信提醒 */
    isSendMessage?: boolean;
    /** 是否人员变更提醒 */
    staffChangeMessage?: boolean;
    /** 是否批改提醒 */
    batchUpdateMessage?: boolean;
    /** 密码 */
    password?: string;
  }
@@ -5590,10 +5600,14 @@
    industrialParkId?: string;
    /** 产业园区名称 */
    industrialParkName?: string;
    /** 维护的公司 */
    companyOrgId?: string;
    /** 维护的部门 */
    departmentOrgId?: string;
    /** 是否有服务人员 */
    isHasServiceStaff?: boolean;
    /** 服务人员id */
    userServiceStaffId?: string;
    /** 服务人员名称 */
    userServiceStaffs?: CustomerManageListOutputUserServiceStaff[];
    /** 服务人员名称 */
    userServiceStaffName?: string;
    /** 是否奖励金发放 */
@@ -5608,6 +5622,14 @@
    pageModel?: Pagination;
    objectData?: any;
    data?: CustomerManageListOutput[];
  }
  interface CustomerManageListOutputUserServiceStaff {
    /** 用户Id */
    userId?: string;
    /** 服务人员Id */
    userServiceStaffId?: string;
    name?: string;
  }
  interface CustomerMenu {
@@ -9042,6 +9064,8 @@
    tradeTime?: string;
    /** 奖励金余额 */
    remianAmount?: number;
    /** 奖励金余额 */
    bountyAmount?: number;
    financeType?: FinanceTypeEnum;
    showAuditStatus?: EnumParkBountyTradeDetailAuditStatus;
    auditStatus?: EnumParkBountyTradeDetailAuditStatus;
@@ -9530,6 +9554,10 @@
    amount?: number;
    /** 凭证地址 */
    url?: string;
    /** 审核凭证 */
    payAuditFileUrl?: string;
    /** 审核凭证 */
    financeAuditFileUrl?: string;
    /** 奖励金申报详细Id */
    parkBountyApplyDetailId?: string;
    /** 关联Id */
@@ -9562,6 +9590,10 @@
    industrialParkId?: string;
    /** 所属园区 */
    industrialParkName?: string;
    /** 是否支持平台充值 */
    suportPlatRecharge?: boolean;
    /** 是否支持用户提现 */
    suportWithDraw?: boolean;
    /** 联系人 */
    contact?: string;
    /** 联系电话 */
@@ -18457,6 +18489,8 @@
    /** 服务人员Id */
    userServiceStaffId?: string;
    userId?: string;
    /** 产业园区id */
    industrialParkId?: string;
  }
  interface QueryCustomerTemplateListInput {
@@ -21933,6 +21967,16 @@
    industrialParkIds?: string[];
    /** 角色 */
    roleNames?: string[];
    /** 是否理赔提醒 */
    sendClaimMessage?: boolean;
    /** 是否保单到期提醒 */
    sendBillExpireMessage?: boolean;
    /** 是否短信提醒 */
    isSendMessage?: boolean;
    /** 是否人员变更提醒 */
    staffChangeMessage?: boolean;
    /** 是否批改提醒 */
    batchUpdateMessage?: boolean;
    /** 密码 */
    password?: string;
    /** 用户Id */
@@ -23240,8 +23284,20 @@
    companyOrgId?: string;
    /** 组织架构部门id */
    departmentOrgId?: string;
    /** 用户端Id */
    clientId?: string;
    /** 园区Ids */
    industrialParkIds?: string[];
    /** 是否理赔提醒 */
    sendClaimMessage?: boolean;
    /** 是否保单到期提醒 */
    sendBillExpireMessage?: boolean;
    /** 是否短信提醒 */
    isSendMessage?: boolean;
    /** 是否人员变更提醒 */
    staffChangeMessage?: boolean;
    /** 是否批改提醒 */
    batchUpdateMessage?: boolean;
  }
  interface UserDtoPageOutput {
src/views/Reward/FinancialApproval.vue
@@ -176,7 +176,7 @@
      tradeTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
      financeAuditTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
      tradeAmount: { type: 'money' },
      remianAmount: { type: 'money' },
      bountyAmount: { type: 'money' },
      financeAuditStatus: {
        type: 'tag',
        valueEnum: EnumParkBountyTradeDetailAuditStatusText,
src/views/Reward/RewardApplyTradeCheck.vue
@@ -176,7 +176,7 @@
      tradeTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
      auditTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
      tradeAmount: { type: 'money' },
      remianAmount: { type: 'money' },
      bountyAmount: { type: 'money' },
      auditStatus: {
        type: 'tag',
        valueEnum: EnumParkBountyTradeDetailAuditStatusText,
src/views/Reward/RewardGrantRegister.vue
@@ -262,11 +262,11 @@
  },
});
async function handleImportParkBountyData(response: UploadUserFile) {
async function handleImportParkBountyData() {
  try {
    let params: API.ImportBountyApplyDataInput = {
      parkBountyApplyId: uploadFileForm.parkBountyApplyId,
      url: response.url,
      url: uploadFileForm.url?.[0]?.path ?? '',
      financeToFileUrl: convertFormUrl2ApiBySeparator(uploadFileForm.financeToFileUrl),
      transferToFileUrl: convertFormUrl2ApiBySeparator(uploadFileForm.transferToFileUrl),
    };
src/views/Reward/constants/columns.ts
@@ -69,7 +69,7 @@
  },
  {
    id: '12',
    enCode: 'remianAmount',
    enCode: 'bountyAmount',
    name: '资金余额',
    width: 120,
  },
@@ -152,7 +152,7 @@
  },
  {
    id: '11',
    enCode: 'remianAmount',
    enCode: 'bountyAmount',
    name: '资金余额',
    width: 160,
  },