@ningboyz/types 1.5.8 → 1.5.10
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
CHANGED
package/src/const/const_cnfg.ts
CHANGED
|
@@ -90,3 +90,7 @@ export const CONST_USER_CNFG_YZCB_BGFLOW = 10320004; // #建设项目变更流
|
|
|
90
90
|
export const CONST_USER_CNFG_TAKE_QYFLOW = 10330001; // #入库登记流程
|
|
91
91
|
export const CONST_USER_CNFG_TAKE_LYFLOW = 10330002; // #领用申请流程
|
|
92
92
|
export const CONST_USER_CNFG_TAKE_CSFLOW = 10330003; // #物资初始流程
|
|
93
|
+
|
|
94
|
+
// #附件管理
|
|
95
|
+
// 部门
|
|
96
|
+
export const CONST_USER_CNFG_PATH_DEPT_UPLOAD = 10011020; // #部门附件上传
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface IGrowViewErrorMsg {
|
|
2
|
+
rowIndex: number;
|
|
3
|
+
errorKey: string;
|
|
4
|
+
errorMsg: string;
|
|
5
|
+
errorCnt: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export class TGrowViewErrorMsg implements IGrowViewErrorMsg {
|
|
9
|
+
rowIndex: number = 0;
|
|
10
|
+
errorKey: string = "";
|
|
11
|
+
errorMsg: string = "";
|
|
12
|
+
errorCnt: number = 0;
|
|
13
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export interface IGrowViewResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
viewIndx: number;
|
|
5
|
+
parentID: number;
|
|
6
|
+
hashCode: number;
|
|
7
|
+
dataLevl: number;
|
|
8
|
+
dataFrom: number;
|
|
9
|
+
dataType: number;
|
|
10
|
+
kjndKJQJ: number;
|
|
11
|
+
isLasted: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataDate: number;
|
|
16
|
+
dataTime: number;
|
|
17
|
+
dataGUID: string;
|
|
18
|
+
createBy: string;
|
|
19
|
+
createAt: number;
|
|
20
|
+
updateBy: string;
|
|
21
|
+
updateAt: number;
|
|
22
|
+
deleteBy: string;
|
|
23
|
+
deleteAt: number;
|
|
24
|
+
queuesBy: number;
|
|
25
|
+
entityID: string;
|
|
26
|
+
fileName: string;
|
|
27
|
+
viewName: string;
|
|
28
|
+
sql4Data: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export class TGrowViewResponse implements IGrowViewResponse {
|
|
32
|
+
whoBuild: number = 0;
|
|
33
|
+
userIndx: number = 0;
|
|
34
|
+
viewIndx: number = 0;
|
|
35
|
+
parentID: number = 0;
|
|
36
|
+
hashCode: number = 0;
|
|
37
|
+
dataLevl: number = 0;
|
|
38
|
+
dataFrom: number = 0;
|
|
39
|
+
dataType: number = 0;
|
|
40
|
+
kjndKJQJ: number = 0;
|
|
41
|
+
isLasted: number = 0;
|
|
42
|
+
dataStat: number = 0;
|
|
43
|
+
dataOrdr: number = 0;
|
|
44
|
+
dataHide: number = 0;
|
|
45
|
+
dataDate: number = 0;
|
|
46
|
+
dataTime: number = 0;
|
|
47
|
+
dataGUID: string = "";
|
|
48
|
+
createBy: string = "";
|
|
49
|
+
createAt: number = 0;
|
|
50
|
+
updateBy: string = "";
|
|
51
|
+
updateAt: number = 0;
|
|
52
|
+
deleteBy: string = "";
|
|
53
|
+
deleteAt: number = 0;
|
|
54
|
+
queuesBy: number = 0;
|
|
55
|
+
entityID: string = "";
|
|
56
|
+
fileName: string = "";
|
|
57
|
+
viewName: string = "";
|
|
58
|
+
sql4Data: string = "";
|
|
59
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IGrowViewErrorMsg, TGrowViewErrorMsg } from "./IGrowViewErrorMsg";
|
|
2
|
+
import { IGrowViewResponse, TGrowViewResponse } from "./IGrowViewResponse";
|
|
3
|
+
|
|
4
|
+
export {
|
|
5
|
+
TGrowViewErrorMsg,
|
|
6
|
+
TGrowViewResponse,
|
|
7
|
+
type IGrowViewErrorMsg,
|
|
8
|
+
type IGrowViewResponse
|
|
9
|
+
};
|
|
10
|
+
|
package/src/index.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as TAntv from "./antv";
|
|
2
2
|
import * as TApp from "./app";
|
|
3
|
+
import * as TAxios from "./axios";
|
|
3
4
|
import { IBaseResponse } from "./base/IBaseResponse";
|
|
4
5
|
import * as TBill from "./bill";
|
|
5
6
|
import * as TCard from "./card";
|
|
6
7
|
import * as TCggz from "./cggz";
|
|
7
8
|
import * as TCnfg from "./conf";
|
|
8
|
-
import { IAboutConfig, IBaseConfig, IConfig, IPathConfig,
|
|
9
|
+
import { IAboutConfig, IBaseConfig, IConfig, IPathConfig, ISsoConfig, IToolDownLoadData, IWtuiConfig } from "./conf/IConfig";
|
|
9
10
|
import * as Const from "./const";
|
|
10
11
|
import * as TCore from "./core";
|
|
11
12
|
import * as TCron from "./cron";
|
|
@@ -14,8 +15,10 @@ import * as Decorators from "./decorators";
|
|
|
14
15
|
import * as TElem from "./elem";
|
|
15
16
|
import * as Enums from "./enums";
|
|
16
17
|
import * as TExpd from "./expd";
|
|
18
|
+
import * as TFind from "./find";
|
|
17
19
|
import * as TFlow from "./flow";
|
|
18
20
|
import * as TGams from "./gams";
|
|
21
|
+
import * as TGrow from "./grow";
|
|
19
22
|
import * as TGzjg from "./gzjg";
|
|
20
23
|
import * as TGztb from "./gztb";
|
|
21
24
|
import * as TGzzd from "./gzzd";
|
|
@@ -28,10 +31,14 @@ import * as Micro from "./micro";
|
|
|
28
31
|
import * as TMyoa from "./myoa";
|
|
29
32
|
import * as TNoti from "./noti";
|
|
30
33
|
import * as TPzpt from "./pzpt";
|
|
34
|
+
import * as TResp from "./response";
|
|
35
|
+
import * as TStim from "./stim";
|
|
31
36
|
import * as TStore from "./store";
|
|
32
37
|
import * as TTabl from "./tabl";
|
|
33
38
|
import * as TTake from "./take";
|
|
39
|
+
import * as TTalk from "./talk";
|
|
34
40
|
import * as TTask from "./task";
|
|
41
|
+
import * as TVary from "./vary";
|
|
35
42
|
import * as TWldy from "./wldy";
|
|
36
43
|
import * as TWlzf from "./wlzf";
|
|
37
44
|
import * as TWtui from "./wtui";
|
|
@@ -44,12 +51,6 @@ import * as TZbhd from "./zbhd";
|
|
|
44
51
|
import * as TZbzd from "./zbzd";
|
|
45
52
|
import * as TZfht from "./zfht";
|
|
46
53
|
import * as TZfsq from "./zfsq";
|
|
47
|
-
import * as TVary from "./vary";
|
|
48
|
-
import * as TResp from "./response";
|
|
49
|
-
import * as TAxios from "./axios";
|
|
50
|
-
import * as TFind from "./find";
|
|
51
|
-
import * as TTalk from "./talk";
|
|
52
|
-
import * as TStim from "./stim";
|
|
53
54
|
|
|
54
55
|
export {
|
|
55
56
|
Const,
|
|
@@ -57,8 +58,7 @@ export {
|
|
|
57
58
|
Enums,
|
|
58
59
|
Micro,
|
|
59
60
|
TAntv,
|
|
60
|
-
TApp,
|
|
61
|
-
TBill,
|
|
61
|
+
TApp, TAxios, TBill,
|
|
62
62
|
TCard,
|
|
63
63
|
TCggz,
|
|
64
64
|
TCnfg,
|
|
@@ -67,8 +67,10 @@ export {
|
|
|
67
67
|
TCustom,
|
|
68
68
|
TElem,
|
|
69
69
|
TExpd,
|
|
70
|
+
TFind,
|
|
70
71
|
TFlow,
|
|
71
72
|
TGams,
|
|
73
|
+
TGrow,
|
|
72
74
|
TGzjg,
|
|
73
75
|
TGztb,
|
|
74
76
|
TGzzd,
|
|
@@ -80,10 +82,14 @@ export {
|
|
|
80
82
|
TMyoa,
|
|
81
83
|
TNoti,
|
|
82
84
|
TPzpt,
|
|
85
|
+
TResp,
|
|
86
|
+
TStim,
|
|
83
87
|
TStore,
|
|
84
88
|
TTabl,
|
|
85
89
|
TTake,
|
|
90
|
+
TTalk,
|
|
86
91
|
TTask,
|
|
92
|
+
TVary,
|
|
87
93
|
TWldy,
|
|
88
94
|
TWlzf,
|
|
89
95
|
TWtui,
|
|
@@ -96,18 +102,11 @@ export {
|
|
|
96
102
|
TZbzd,
|
|
97
103
|
TZfht,
|
|
98
104
|
TZfsq,
|
|
99
|
-
TVary,
|
|
100
|
-
TResp,
|
|
101
|
-
TAxios,
|
|
102
|
-
TFind,
|
|
103
|
-
TTalk,
|
|
104
|
-
TStim,
|
|
105
105
|
type IAboutConfig,
|
|
106
106
|
type IBaseConfig,
|
|
107
107
|
type IBaseResponse,
|
|
108
108
|
type IConfig,
|
|
109
109
|
type IPathConfig,
|
|
110
|
-
type ISsoConfig,
|
|
111
|
-
type IWtuiConfig,
|
|
112
|
-
type IToolDownLoadData
|
|
110
|
+
type ISsoConfig, type IToolDownLoadData, type IWtuiConfig
|
|
113
111
|
};
|
|
112
|
+
|