@ningboyz/types 1.1.39 → 1.1.41
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/pnpm-lock.yaml +39 -0
- package/src/wtui/IViewCtrlResponse.ts +3 -1
package/package.json
CHANGED
package/pnpm-lock.yaml
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@aximario/json-tree':
|
|
12
|
+
specifier: 2.2.4
|
|
13
|
+
version: 2.2.4
|
|
14
|
+
lodash:
|
|
15
|
+
specifier: 4.17.21
|
|
16
|
+
version: 4.17.21
|
|
17
|
+
devDependencies:
|
|
18
|
+
'@types/lodash':
|
|
19
|
+
specifier: 4.17.16
|
|
20
|
+
version: 4.17.16
|
|
21
|
+
|
|
22
|
+
packages:
|
|
23
|
+
|
|
24
|
+
'@aximario/json-tree@2.2.4':
|
|
25
|
+
resolution: {integrity: sha512-XGMJ+zuVQ0CRizo1d3ZTUKEvrTqKYbm2a00T6DnRFR36mzV6mexLUKRIk6repj3JKgLrj3iwW8aUFrOS4P7CEA==}
|
|
26
|
+
|
|
27
|
+
'@types/lodash@4.17.16':
|
|
28
|
+
resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==}
|
|
29
|
+
|
|
30
|
+
lodash@4.17.21:
|
|
31
|
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
|
32
|
+
|
|
33
|
+
snapshots:
|
|
34
|
+
|
|
35
|
+
'@aximario/json-tree@2.2.4': {}
|
|
36
|
+
|
|
37
|
+
'@types/lodash@4.17.16': {}
|
|
38
|
+
|
|
39
|
+
lodash@4.17.21: {}
|
|
@@ -7,6 +7,7 @@ export interface IViewCtrlResponse extends IBaseResponse<IViewCtrlResponse> {
|
|
|
7
7
|
ctrlCode: string;
|
|
8
8
|
ctrlName: string;
|
|
9
9
|
ctrlPara: string;
|
|
10
|
+
compPath: string;
|
|
10
11
|
entityID: string;
|
|
11
12
|
formType: string;
|
|
12
13
|
jsMethod: string;
|
|
@@ -41,6 +42,7 @@ export class TViewCtrlResponse extends TBaseResponse<IViewCtrlResponse> implemen
|
|
|
41
42
|
ctrlCode: string = "";
|
|
42
43
|
ctrlName: string = "";
|
|
43
44
|
ctrlPara: string = "";
|
|
45
|
+
compPath: string = "";
|
|
44
46
|
entityID: string = "";
|
|
45
47
|
formType: string = "";
|
|
46
48
|
jsMethod: string = "";
|
|
@@ -84,7 +86,7 @@ export class TViewCtrlResponse extends TBaseResponse<IViewCtrlResponse> implemen
|
|
|
84
86
|
return result;
|
|
85
87
|
}
|
|
86
88
|
try {
|
|
87
|
-
const temp = JSON.parse(withPara) as TViewCtrlResponseWithParaConv
|
|
89
|
+
const temp = JSON.parse(withPara) as TViewCtrlResponseWithParaConv;
|
|
88
90
|
return _.merge(result, temp);
|
|
89
91
|
} catch (_e: any) { }
|
|
90
92
|
return result;
|