@ningboyz/types 1.7.186 → 1.7.190
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/conf/IConfig.ts +14 -4
- package/src/enc/IEncConfigResponse.ts +16 -0
- package/src/enc/index.ts +3 -0
- package/src/index.ts +2 -1
package/package.json
CHANGED
package/src/conf/IConfig.ts
CHANGED
|
@@ -59,13 +59,23 @@ export interface IBaseConfig {
|
|
|
59
59
|
signatureCheck: boolean;
|
|
60
60
|
houseURL: string;
|
|
61
61
|
jscURL: string;
|
|
62
|
-
initPassword:string,
|
|
62
|
+
initPassword: string,
|
|
63
63
|
/**模块大类 */
|
|
64
|
-
sysclasc:number,
|
|
64
|
+
sysclasc: number,
|
|
65
65
|
/**是否启动登录页 */
|
|
66
|
-
isLogin:boolean,
|
|
66
|
+
isLogin: boolean,
|
|
67
67
|
/**系统截止时间 */
|
|
68
|
-
endkjqj:number
|
|
68
|
+
endkjqj: number;
|
|
69
|
+
/**字体 */
|
|
70
|
+
appNameFontFamily: string;
|
|
71
|
+
/**字号 */
|
|
72
|
+
appNameSize: number;
|
|
73
|
+
/**字体缩进 */
|
|
74
|
+
appNameLeft: number;
|
|
75
|
+
/**字体粗细 */
|
|
76
|
+
appNameFontWeight: number;
|
|
77
|
+
/**是否加密 */
|
|
78
|
+
encrypt:boolean | undefined | null;
|
|
69
79
|
}
|
|
70
80
|
|
|
71
81
|
export interface IPathConfig {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface IEncConfigResponse {
|
|
2
|
+
cryptTxt: string;
|
|
3
|
+
encryKey: string;
|
|
4
|
+
d: string;
|
|
5
|
+
x: string;
|
|
6
|
+
y: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export class TEncConfigResponse implements IEncConfigResponse {
|
|
10
|
+
cryptTxt: string = "";
|
|
11
|
+
encryKey: string = "";
|
|
12
|
+
d: string = "";
|
|
13
|
+
x: string = "";
|
|
14
|
+
y: string = "";
|
|
15
|
+
}
|
|
16
|
+
|
package/src/enc/index.ts
ADDED
package/src/index.ts
CHANGED
|
@@ -55,6 +55,7 @@ import * as TZbhd from "./zbhd";
|
|
|
55
55
|
import * as TZbzd from "./zbzd";
|
|
56
56
|
import * as TZfht from "./zfht";
|
|
57
57
|
import * as TZfsq from "./zfsq";
|
|
58
|
+
import * as TEnc from "./enc";
|
|
58
59
|
|
|
59
60
|
export {
|
|
60
61
|
Const,
|
|
@@ -112,6 +113,7 @@ export {
|
|
|
112
113
|
TZbzd,
|
|
113
114
|
TZfht,
|
|
114
115
|
TZfsq,
|
|
116
|
+
TEnc,
|
|
115
117
|
type IAboutConfig,
|
|
116
118
|
type IBaseConfig,
|
|
117
119
|
type IBaseResponse,
|
|
@@ -121,4 +123,3 @@ export {
|
|
|
121
123
|
type IToolDownLoadData,
|
|
122
124
|
type IWtuiConfig
|
|
123
125
|
};
|
|
124
|
-
|