@ibiz/model-core 0.1.24 → 0.1.25
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.
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
2
2
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
|
+
import { ISysCss } from '../../res/isys-css';
|
|
4
|
+
import { ISysImage } from '../../res/isys-image';
|
|
3
5
|
import { IModelObject } from '../../imodel-object';
|
|
4
6
|
/**
|
|
5
7
|
*
|
|
@@ -28,6 +30,14 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
28
30
|
* 来源 getDynamicMode
|
|
29
31
|
*/
|
|
30
32
|
dynamicMode?: number | 0 | 1;
|
|
33
|
+
/**
|
|
34
|
+
* 视图消息启用模式
|
|
35
|
+
* @description 值模式 [视图消息启用模式] {ALL:全部启用、 DEOPPRIV:实体操作标识、 DELOGIC:实体逻辑、 SCRIPT:脚本 }
|
|
36
|
+
* @type {( string | 'ALL' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT')}
|
|
37
|
+
* @default ALL
|
|
38
|
+
* 来源 getEnableMode
|
|
39
|
+
*/
|
|
40
|
+
enableMode?: string | 'ALL' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT';
|
|
31
41
|
/**
|
|
32
42
|
* 显示消息
|
|
33
43
|
* @type {string}
|
|
@@ -62,6 +72,20 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
62
72
|
* 来源 getPSLayoutPanel
|
|
63
73
|
*/
|
|
64
74
|
layoutPanel?: ILayoutPanel;
|
|
75
|
+
/**
|
|
76
|
+
* 系统界面样式表
|
|
77
|
+
*
|
|
78
|
+
* @type {ISysCss}
|
|
79
|
+
* 来源 getPSSysCss
|
|
80
|
+
*/
|
|
81
|
+
sysCss?: ISysCss;
|
|
82
|
+
/**
|
|
83
|
+
* 系统图片
|
|
84
|
+
*
|
|
85
|
+
* @type {ISysImage}
|
|
86
|
+
* 来源 getPSSysImage
|
|
87
|
+
*/
|
|
88
|
+
sysImage?: ISysImage;
|
|
65
89
|
/**
|
|
66
90
|
* 显示位置
|
|
67
91
|
* @description 值模式 [视图消息位置] {TOP:视图上方、 BOTTOM:视图下方、 BODY:视图内容区、 POPUP:弹出、 CUSTOM:自定义 }
|
|
@@ -83,6 +107,19 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
83
107
|
* 来源 getTestPSAppDELogic
|
|
84
108
|
*/
|
|
85
109
|
testAppDELogicId?: string;
|
|
110
|
+
/**
|
|
111
|
+
* 启用判断操作标识
|
|
112
|
+
*
|
|
113
|
+
* @type {string}
|
|
114
|
+
* 来源 getTestPSDEOPPriv
|
|
115
|
+
*/
|
|
116
|
+
testDEOPPrivId?: string;
|
|
117
|
+
/**
|
|
118
|
+
* 启用判断脚本
|
|
119
|
+
* @type {string}
|
|
120
|
+
* 来源 getTestScriptCode
|
|
121
|
+
*/
|
|
122
|
+
testScriptCode?: string;
|
|
86
123
|
/**
|
|
87
124
|
* 抬头
|
|
88
125
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
2
2
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
|
+
import { ISysCss } from '../../res/isys-css';
|
|
4
|
+
import { ISysImage } from '../../res/isys-image';
|
|
3
5
|
import { IModelObject } from '../../imodel-object';
|
|
4
6
|
|
|
5
7
|
/**
|
|
@@ -32,6 +34,15 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
32
34
|
*/
|
|
33
35
|
dynamicMode?: number | 0 | 1;
|
|
34
36
|
|
|
37
|
+
/**
|
|
38
|
+
* 视图消息启用模式
|
|
39
|
+
* @description 值模式 [视图消息启用模式] {ALL:全部启用、 DEOPPRIV:实体操作标识、 DELOGIC:实体逻辑、 SCRIPT:脚本 }
|
|
40
|
+
* @type {( string | 'ALL' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT')}
|
|
41
|
+
* @default ALL
|
|
42
|
+
* 来源 getEnableMode
|
|
43
|
+
*/
|
|
44
|
+
enableMode?: string | 'ALL' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT';
|
|
45
|
+
|
|
35
46
|
/**
|
|
36
47
|
* 显示消息
|
|
37
48
|
* @type {string}
|
|
@@ -71,6 +82,22 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
71
82
|
*/
|
|
72
83
|
layoutPanel?: ILayoutPanel;
|
|
73
84
|
|
|
85
|
+
/**
|
|
86
|
+
* 系统界面样式表
|
|
87
|
+
*
|
|
88
|
+
* @type {ISysCss}
|
|
89
|
+
* 来源 getPSSysCss
|
|
90
|
+
*/
|
|
91
|
+
sysCss?: ISysCss;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* 系统图片
|
|
95
|
+
*
|
|
96
|
+
* @type {ISysImage}
|
|
97
|
+
* 来源 getPSSysImage
|
|
98
|
+
*/
|
|
99
|
+
sysImage?: ISysImage;
|
|
100
|
+
|
|
74
101
|
/**
|
|
75
102
|
* 显示位置
|
|
76
103
|
* @description 值模式 [视图消息位置] {TOP:视图上方、 BOTTOM:视图下方、 BODY:视图内容区、 POPUP:弹出、 CUSTOM:自定义 }
|
|
@@ -95,6 +122,21 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
95
122
|
*/
|
|
96
123
|
testAppDELogicId?: string;
|
|
97
124
|
|
|
125
|
+
/**
|
|
126
|
+
* 启用判断操作标识
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* 来源 getTestPSDEOPPriv
|
|
130
|
+
*/
|
|
131
|
+
testDEOPPrivId?: string;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* 启用判断脚本
|
|
135
|
+
* @type {string}
|
|
136
|
+
* 来源 getTestScriptCode
|
|
137
|
+
*/
|
|
138
|
+
testScriptCode?: string;
|
|
139
|
+
|
|
98
140
|
/**
|
|
99
141
|
* 抬头
|
|
100
142
|
* @type {string}
|