@lm_fe/service 0.2.2 → 0.2.6
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/README.md
CHANGED
|
@@ -74,7 +74,10 @@ export declare const SMchc_Common: {
|
|
|
74
74
|
医生端_复诊编辑控制?: boolean;
|
|
75
75
|
高危标记多选?: number;
|
|
76
76
|
病人标签多选?: number;
|
|
77
|
+
旧版量表隐藏?: string[];
|
|
78
|
+
禁用量表自动弹出?: boolean;
|
|
77
79
|
头部信息拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
80
|
+
量表拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
78
81
|
医生端_BMI曲线类型?: number;
|
|
79
82
|
顶部工具栏隐藏?: boolean;
|
|
80
83
|
styles?: Partial<{
|
|
@@ -155,7 +158,10 @@ export declare const SMchc_Common: {
|
|
|
155
158
|
医生端_复诊编辑控制?: boolean;
|
|
156
159
|
高危标记多选?: number;
|
|
157
160
|
病人标签多选?: number;
|
|
161
|
+
旧版量表隐藏?: string[];
|
|
162
|
+
禁用量表自动弹出?: boolean;
|
|
158
163
|
头部信息拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
164
|
+
量表拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
159
165
|
医生端_BMI曲线类型?: number;
|
|
160
166
|
顶部工具栏隐藏?: boolean;
|
|
161
167
|
styles?: Partial<{
|
|
@@ -223,7 +229,10 @@ export declare const SMchc_Common: {
|
|
|
223
229
|
医生端_复诊编辑控制?: boolean;
|
|
224
230
|
高危标记多选?: number;
|
|
225
231
|
病人标签多选?: number;
|
|
232
|
+
旧版量表隐藏?: string[];
|
|
233
|
+
禁用量表自动弹出?: boolean;
|
|
226
234
|
头部信息拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
235
|
+
量表拓展?: import("@lm_fe/utils").ICommonOption[];
|
|
227
236
|
医生端_BMI曲线类型?: number;
|
|
228
237
|
顶部工具栏隐藏?: boolean;
|
|
229
238
|
styles?: Partial<{
|
|
@@ -18,6 +18,7 @@ export interface IMchc_TableConfig {
|
|
|
18
18
|
handleBeforePopup: any;
|
|
19
19
|
genColumns: any;
|
|
20
20
|
beforeSubmit: any;
|
|
21
|
+
targetLabelCol?: number;
|
|
21
22
|
"showAction": any;
|
|
22
23
|
"category": any;
|
|
23
24
|
"needSync": any;
|
|
@@ -44,6 +45,7 @@ declare class Mchc_TableConfig_Service extends ModelService<IMchc_TableConfig> {
|
|
|
44
45
|
handleBeforePopup: any;
|
|
45
46
|
genColumns: any;
|
|
46
47
|
beforeSubmit: any;
|
|
48
|
+
targetLabelCol?: number;
|
|
47
49
|
showAction: any;
|
|
48
50
|
category: any;
|
|
49
51
|
needSync: any;
|
|
@@ -70,6 +72,7 @@ declare class Mchc_TableConfig_Service extends ModelService<IMchc_TableConfig> {
|
|
|
70
72
|
handleBeforePopup?: any;
|
|
71
73
|
genColumns?: any;
|
|
72
74
|
beforeSubmit?: any;
|
|
75
|
+
targetLabelCol?: number | undefined;
|
|
73
76
|
showAction?: any;
|
|
74
77
|
category?: any;
|
|
75
78
|
needSync?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lm_fe/service",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"author": "",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@lm_fe/env": "0.2.
|
|
27
|
-
"@lm_fe/utils": "0.2.
|
|
26
|
+
"@lm_fe/env": "^0.2.6",
|
|
27
|
+
"@lm_fe/utils": "^0.2.6",
|
|
28
28
|
"@noah-libjs/components": "*",
|
|
29
29
|
"dayjs": "^1.11.13",
|
|
30
30
|
"lodash": "*"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"axios": "0.x"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "6e298f7ef7ab4c77f79d02fd3f1224bfcf227f8b"
|
|
39
39
|
}
|