Commit cdc246eb741e2ffe800d3517aa67b2b3390e2fcd

Authored by feewee007
1 parent 38788314

fix(finance): 取消原付款申请、事项申请改付款申请

Showing 1 changed file with 7 additions and 7 deletions
src/pages/finance/entitys.ts
... ... @@ -222,9 +222,9 @@ export const ExpireRepayRuleObj: { [key: string]: any }[] = [
222 222 // 配置类型(不可编辑):1 收入录入,2 付款申请,3 缴费申请,4 事项申请(See: 财务款项配置类型)
223 223 export enum ConfigTypeEnum {
224 224 '收入录入' = 1,
225   - '付款申请',
  225 + // '付款申请',
226 226 '缴费申请',
227   - '事项申请',
  227 + '付款申请',
228 228 }
229 229  
230 230 export const ConfigType = [
... ... @@ -232,17 +232,17 @@ export const ConfigType = [
232 232 label: '收入录入',
233 233 value: ConfigTypeEnum['收入录入'],
234 234 },
235   - {
236   - label: '原付款申请',
237   - value: ConfigTypeEnum['付款申请'],
238   - },
  235 + // {
  236 + // label: '原付款申请',
  237 + // value: ConfigTypeEnum['付款申请'],
  238 + // },
239 239 {
240 240 label: '缴费申请',
241 241 value: ConfigTypeEnum['缴费申请'],
242 242 },
243 243 {
244 244 label: '付款申请',
245   - value: ConfigTypeEnum['事项申请'],
  245 + value: ConfigTypeEnum['付款申请'],
246 246 },
247 247 ];
248 248 /**
... ...