Browse Source

REPORT-86413 feat: 数据连接适配平台加解密改造

feature/x
Austin.Duan 2 years ago
parent
commit
1cfe9d2ddb
  1. 6
      src/modules/crud/decision.api.ts
  2. 1
      types/globals.d.ts

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

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

1
types/globals.d.ts vendored

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

Loading…
Cancel
Save