huangbin 4 년 전
부모
커밋
0c5cd1e942
2개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. 18 0
      src/common/constants/enumsName.ts
  2. 3 0
      src/common/setup/table/clolumn.ts

+ 18 - 0
src/common/constants/enumsName.ts

@@ -741,6 +741,24 @@ export function getPaymentTypeName(type: number) {
 }
 
 /**
+ * 类型 - 1:套保计划 2:现货合同
+ * @param type
+ */
+export function getLogType(logtype: number) {
+    let result = "--"
+    debugger
+    switch (logtype) {
+        case 1:
+            result = '套保计划'
+            break
+        case 2:
+            result = '现货合同'
+            break
+    }
+    return result
+}
+
+/**
  * 资金操作类型
  * 资金操作类型 (AccountFundCmdOp)- 101:入金 102:入金手续费 103:出金 104:出金冻结 105:出金解冻 106:出金手续费 107:出金手续费冻结 108:出金手续费解冻
  * 201:交易冻结 202:交易解冻 203:交易占用 204:交易解占用 205:交易手续费冻结 206:交易手续费解冻 207:交易手续费 208:交易货款 209:交易盈亏

+ 3 - 0
src/common/setup/table/clolumn.ts

@@ -127,6 +127,9 @@ function getFromatterFn(val: string) {
         case 'getChangeLogType':  // 变更流水类型
             result = FormatterFn.getChangeLogType
             break
+        case 'getLogType' : // 计划类型
+            result = FormatterFn.getLogType
+            break
         default:
             if (first) {
                 console.warn(`请开发人员配置${first}格式化函数!`)