Просмотр исходного кода

refactor(types): 审批金额汇总组件名称变更

vian 3 лет назад
Родитель
Сommit
a1e422bc0f
2 измененных файлов с 7 добавлено и 7 удалено
  1. 3 3
      types/src/interface/matter.ts
  2. 4 4
      types/src/interface/process.ts

+ 3 - 3
types/src/interface/matter.ts

@@ -1,7 +1,7 @@
 import { BusinessTypeKey, MatterTypeKey } from './gather';
 
-// 审批金额组件阶段数据
-export interface IAuditAmountConfig {
+// 审批金额汇总组件阶段数据
+export interface IAuditSummaryConfig {
   // 阶段名称
   name: string;
   // 关联步骤ID
@@ -21,7 +21,7 @@ export interface IMatter {
   assembly: string[];
   dataID: string;
   // 审批金额组件配置
-  auditAmountConfig?: IAuditAmountConfig[];
+  auditAmountConfig?: IAuditSummaryConfig[];
 }
 
 export interface IGatherMatter extends IMatter {

+ 4 - 4
types/src/interface/process.ts

@@ -466,7 +466,7 @@ export interface IConditionSetting {
 }
 
 // 审核金额 核减、增金额数据
-export interface IAuditAmountDiff {
+export interface IAuditSummaryDiff {
   // 核减金额
   decFee: string;
   // 核增金额
@@ -482,7 +482,7 @@ export interface IAuditAmountDiff {
 }
 
 // 审批金额汇总表数据
-export interface IAuditAmountItem {
+export interface IAuditSummaryItem {
   // 阶段
   stage: string;
   // 执行者名称
@@ -496,7 +496,7 @@ export interface IAuditAmountItem {
   // 金额
   fee: string;
   // 与上一阶段对比
-  compareToPrev: IAuditAmountDiff;
+  compareToPrev: IAuditSummaryDiff;
   // 与上送审对比
-  compareToReport: IAuditAmountDiff;
+  compareToReport: IAuditSummaryDiff;
 }