|
|
@@ -92,6 +92,7 @@ import { message } from 'ant-design-vue';
|
|
|
import { defineComponent, PropType, ref } from 'vue';
|
|
|
import { FormParam } from './interface';
|
|
|
import { useForm } from './setup';
|
|
|
+import { decryptAES } from '@/utils/websocket/crypto';
|
|
|
|
|
|
export default defineComponent({
|
|
|
emits: ['cancel', 'update'],
|
|
|
@@ -150,7 +151,7 @@ export default defineComponent({
|
|
|
OpenBankName: res.subBankName, // 开户支行名称
|
|
|
ExtOperatorID: getTimeValue(), // 外部操作流水号
|
|
|
CertType: userInfo.cardtypeid.toString(), // 证件类型
|
|
|
- CertID: userInfo.cardnum, // 证件号码
|
|
|
+ CertID: decryptAES(userInfo.cardnum)!, // 证件号码
|
|
|
CusBankID: managerBank.cusbankid, // 托管银行编号
|
|
|
Currency: managerBank.currency, // 币种
|
|
|
TradeDate: managerBank.tradedate, // 交易所业务日期
|