Browse Source

Pull request #6892: REPORT-86413 revert 回退加密改造内容

Merge in DEC/decision-webui-dcm from ~AUSTIN.DUAN/decision-webui-dcm:release/11.0 to release/11.0

* commit '057f9d804c23daf9bbb64daff0aff31ac760f537':
  Revert "REPORT-86413 feat: 数据连接适配平台加解密改造"
release/11.0
Austin.Duan-段嗣跃 2 years ago
parent
commit
a8d96361bb
  1. 6
      src/modules/crud/decision.api.ts
  2. 1
      types/globals.d.ts

6
src/modules/crud/decision.api.ts

@ -107,11 +107,13 @@ export class DecisionApi implements Api {
} }
getCipher(password: string) { getCipher(password: string) {
return Dec.Utils['getTransCipherText'](password); return BI.Providers.getProvider('dec.provider.cipher')
.getCipher(password);
} }
getPlain(cipher: string) { getPlain(cipher: string) {
return Dec.Utils['getPlainText'](cipher); return BI.Providers.getProvider('dec.provider.cipher')
.getPlain(cipher);
} }
getHyperlink(name: string) { getHyperlink(name: string) {

1
types/globals.d.ts vendored

@ -13,7 +13,6 @@ declare const Dec: {
connected: boolean; connected: boolean;
}; };
system: {}; system: {};
Utils: {},
personal: { personal: {
username: string; username: string;
}; };

Loading…
Cancel
Save