@ibiz/model-core 0.1.54 → 0.1.58

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.
Files changed (45) hide show
  1. package/out/app/dataentity/iapp-delogic-param.d.ts +2 -2
  2. package/out/app/iapplication.d.ts +6 -0
  3. package/out/app/isub-app-ref.d.ts +14 -0
  4. package/out/app/view/iapp-dedata-set-view-msg.d.ts +7 -0
  5. package/out/app/view/iapp-detab-explorer-view.d.ts +3 -3
  6. package/out/control/calendar/icalendar.d.ts +2 -1
  7. package/out/control/chart/ichart.d.ts +2 -1
  8. package/out/control/dashboard/idashboard.d.ts +3 -3
  9. package/out/control/dataview/idedata-view.d.ts +8 -0
  10. package/out/control/drctrl/idedrbar-group.d.ts +7 -0
  11. package/out/control/drctrl/idedrctrl-item.d.ts +7 -0
  12. package/out/control/expbar/itab-exp-panel.d.ts +3 -3
  13. package/out/control/form/ideedit-form.d.ts +35 -0
  14. package/out/control/grid/idegrid.d.ts +8 -0
  15. package/out/control/icontrol-navigatable.d.ts +58 -0
  16. package/out/control/list/idelist.d.ts +31 -0
  17. package/out/control/map/imap.d.ts +2 -1
  18. package/out/control/tree/idetree-data-set-node.d.ts +7 -0
  19. package/out/control/tree/idetree.d.ts +2 -1
  20. package/out/dataentity/logic/idelogic-node-param.d.ts +6 -0
  21. package/out/dataentity/logic/idelogic-param.d.ts +6 -0
  22. package/out/view/iuiaction-group-detail.d.ts +19 -0
  23. package/package.json +1 -1
  24. package/src/app/dataentity/iapp-delogic-param.ts +2 -2
  25. package/src/app/iapplication.ts +7 -0
  26. package/src/app/isub-app-ref.ts +16 -0
  27. package/src/app/view/iapp-dedata-set-view-msg.ts +8 -0
  28. package/src/app/view/iapp-detab-explorer-view.ts +3 -2
  29. package/src/control/calendar/icalendar.ts +2 -0
  30. package/src/control/chart/ichart.ts +2 -1
  31. package/src/control/dashboard/idashboard.ts +4 -2
  32. package/src/control/dataview/idedata-view.ts +9 -0
  33. package/src/control/drctrl/idedrbar-group.ts +8 -0
  34. package/src/control/drctrl/idedrctrl-item.ts +8 -0
  35. package/src/control/expbar/itab-exp-panel.ts +3 -2
  36. package/src/control/form/ideedit-form.ts +51 -0
  37. package/src/control/grid/idegrid.ts +9 -0
  38. package/src/control/icontrol-navigatable.ts +75 -1
  39. package/src/control/list/idelist.ts +35 -0
  40. package/src/control/map/imap.ts +5 -1
  41. package/src/control/tree/idetree-data-set-node.ts +8 -0
  42. package/src/control/tree/idetree.ts +5 -1
  43. package/src/dataentity/logic/idelogic-node-param.ts +7 -0
  44. package/src/dataentity/logic/idelogic-param.ts +7 -0
  45. package/src/view/iuiaction-group-detail.ts +22 -0
@@ -1,10 +1,10 @@
1
- import { IDELogicParamBase } from '../../dataentity/logic/idelogic-param-base';
1
+ import { IDELogicParam } from '../../dataentity/logic/idelogic-param';
2
2
  /**
3
3
  *
4
4
  * @export
5
5
  * @interface IAppDELogicParam
6
6
  */
7
- export interface IAppDELogicParam extends IDELogicParamBase {
7
+ export interface IAppDELogicParam extends IDELogicParam {
8
8
  /**
9
9
  * 参数应用实体对象
10
10
  *
@@ -201,6 +201,12 @@ export interface IApplication extends IModelObject {
201
201
  * 来源 getAppTag4
202
202
  */
203
203
  appTag4?: string;
204
+ /**
205
+ * 应用类型
206
+ * @type {string}
207
+ * 来源 getAppType
208
+ */
209
+ appType?: string;
204
210
  /**
205
211
  * 应用版本
206
212
  * @type {string}
@@ -13,6 +13,13 @@ export interface ISubAppRef extends IModelObject {
13
13
  * 来源 getAllPSAppDEUIActionGroups
14
14
  */
15
15
  appDEUIActionGroupIds?: string[];
16
+ /**
17
+ * 合并菜单集合(除默认菜单)
18
+ *
19
+ * @type {string[]}
20
+ * 来源 getAllPSAppMenuModels
21
+ */
22
+ appMenuModelIds?: string[];
16
23
  /**
17
24
  * 应用视图集合
18
25
  *
@@ -20,6 +27,13 @@ export interface ISubAppRef extends IModelObject {
20
27
  * 来源 getAllPSAppViews
21
28
  */
22
29
  appViewIds?: string[];
30
+ /**
31
+ * 合并部件集合(除关系部件)
32
+ *
33
+ * @type {string[]}
34
+ * 来源 getAllPSControls
35
+ */
36
+ controlIds?: string[];
23
37
  /**
24
38
  * 应用实体关系部件集合
25
39
  *
@@ -40,6 +40,13 @@ export interface IAppDEDataSetViewMsg extends IAppViewMsg {
40
40
  * 来源 getContentPSAppDEField
41
41
  */
42
42
  contentAppDEFieldId?: string;
43
+ /**
44
+ * 内容类型应用实体属性对象
45
+ *
46
+ * @type {string}
47
+ * 来源 getContentTypePSAppDEField
48
+ */
49
+ contentTypeAppDEFieldId?: string;
43
50
  /**
44
51
  * 显示位置应用实体属性对象
45
52
  *
@@ -8,9 +8,9 @@ import { IAppDEExplorerView } from './iapp-deexplorer-view';
8
8
  export interface IAppDETabExplorerView extends IAppDEExplorerView {
9
9
  /**
10
10
  * 分页部件布局模式
11
- * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
12
- * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
11
+ * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 TOP_DROPDOWNLIST:上方(下拉列表)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
12
+ * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
13
13
  * 来源 getTabLayout
14
14
  */
15
- tabLayout?: string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2';
15
+ tabLayout?: string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2';
16
16
  }
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { IMDControl2 } from '../imdcontrol2';
4
5
  import { ILanguageRes } from '../../res/ilanguage-res';
@@ -7,7 +8,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
7
8
  * @export
8
9
  * @interface ICalendar
9
10
  */
10
- export interface ICalendar extends IMDAjaxControl, IControlContainer, IMDControl2 {
11
+ export interface ICalendar extends IMDAjaxControl, IControlContainer, IControlNavigatable, IMDControl2 {
11
12
  /**
12
13
  * 日历样式
13
14
  * @description 值模式 [日历样式] {DAY:天、 WEEK:周、 MONTH:月、 TIMELINE:时间轴、 WEEK_TIMELINE:周(复合时间轴)、 MONTH_TIMELINE:月(复合时间轴)、 USER:用户自定义、 USER2:用户自定义2 }
@@ -1,3 +1,4 @@
1
+ import { IControlNavigatable } from '../icontrol-navigatable';
1
2
  import { IMDAjaxControl } from '../imdajax-control';
2
3
  import { IChartAngleAxis } from './ichart-angle-axis';
3
4
  import { IChartCoordinateSystem } from './ichart-coordinate-system';
@@ -19,7 +20,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
19
20
  * @export
20
21
  * @interface IChart
21
22
  */
22
- export interface IChart extends IMDAjaxControl {
23
+ export interface IChart extends IMDAjaxControl, IControlNavigatable {
23
24
  /**
24
25
  * 坐标系统类型
25
26
  * @description 值模式 [实体图表坐标系统] {XY:直角坐标系、 POLAR:极坐标系、 RADAR:雷达坐标系、 PARALLEL:平行坐标系、 SINGLE:单轴坐标系、 CALENDAR:日历坐标系、 MAP:地图坐标系、 NONE:无坐标系 }
@@ -33,11 +33,11 @@ export interface IDashboard extends IAjaxControl, IControlContainer, IDashboardC
33
33
  navBarSysCss?: ISysCss;
34
34
  /**
35
35
  * 导航栏位置
36
- * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 USER:用户自定义、 USER2:用户自定义2 }
37
- * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'USER' | 'USER2')}
36
+ * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 TOP:上方、 BOTTOM:下方、 USER:用户自定义、 USER2:用户自定义2 }
37
+ * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2')}
38
38
  * 来源 getNavBarPos
39
39
  */
40
- navBarPos?: string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'USER' | 'USER2';
40
+ navBarPos?: string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2';
41
41
  /**
42
42
  * 导航栏样式
43
43
  * @type {string}
@@ -169,6 +169,14 @@ export interface IDEDataView extends IMDAjaxControl, IControlContainer, IControl
169
169
  * 来源 getGroupPSUIActionGroup
170
170
  */
171
171
  groupUIActionGroup?: IUIActionGroup;
172
+ /**
173
+ * 分组样式
174
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
175
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
176
+ * @default DEFAULT
177
+ * 来源 getGroupStyle
178
+ */
179
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
172
180
  /**
173
181
  * 分组宽度
174
182
  * @type {number}
@@ -20,6 +20,13 @@ export interface IDEDRBarGroup extends IModelObject {
20
20
  * 来源 getCaption
21
21
  */
22
22
  caption?: string;
23
+ /**
24
+ * 头部前端扩展插件
25
+ *
26
+ * @type {string}
27
+ * 来源 getHeaderPSSysPFPlugin
28
+ */
29
+ headerSysPFPluginId?: string;
23
30
  /**
24
31
  * 分组图片资源对象
25
32
  *
@@ -48,6 +48,13 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
48
48
  * 来源 getEnableMode
49
49
  */
50
50
  enableMode?: string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT' | 'COUNT_GTE_ZERO' | 'COUNT_GT_ZERO' | 'CUSTOM';
51
+ /**
52
+ * 头部前端扩展插件
53
+ *
54
+ * @type {string}
55
+ * 来源 getHeaderPSSysPFPlugin
56
+ */
57
+ headerSysPFPluginId?: string;
51
58
  /**
52
59
  * 项标记
53
60
  * @type {string}
@@ -16,11 +16,11 @@ export interface ITabExpPanel extends IControl, IControlContainer {
16
16
  tabExpPageIds?: string[];
17
17
  /**
18
18
  * 导航面板布局
19
- * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
20
- * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
19
+ * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 TOP_DROPDOWNLIST:上方(下拉列表)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
20
+ * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
21
21
  * 来源 getTabLayout
22
22
  */
23
- tabLayout?: string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2';
23
+ tabLayout?: string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2';
24
24
  /**
25
25
  * 全局唯一标记
26
26
  * @type {string}
@@ -1,6 +1,7 @@
1
1
  import { IControlAction } from '../icontrol-action';
2
2
  import { ISDAjaxControl } from '../isdajax-control';
3
3
  import { IDEForm } from './ideform';
4
+ import { ISysCss } from '../../res/isys-css';
4
5
  /**
5
6
  *
6
7
  * 继承父接口类型值[FORM]
@@ -43,6 +44,40 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
43
44
  * 来源 getGetPSControlAction
44
45
  */
45
46
  getControlAction?: IControlAction;
47
+ /**
48
+ * 导航栏样式表
49
+ *
50
+ * @type {ISysCss}
51
+ * 来源 getNavBarPSSysCss
52
+ */
53
+ navBarSysCss?: ISysCss;
54
+ /**
55
+ * 导航栏位置
56
+ * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 TOP:上方、 BOTTOM:下方、 USER:用户自定义、 USER2:用户自定义2 }
57
+ * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2')}
58
+ * 来源 getNavBarPos
59
+ */
60
+ navBarPos?: string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2';
61
+ /**
62
+ * 导航栏样式
63
+ * @type {string}
64
+ * 来源 getNavBarStyle
65
+ */
66
+ navBarStyle?: string;
67
+ /**
68
+ * 导航栏宽度
69
+ * @type {number}
70
+ * @default 0.0
71
+ * 来源 getNavBarWidth
72
+ */
73
+ navBarWidth?: number;
74
+ /**
75
+ * 导航栏高度
76
+ * @type {number}
77
+ * @default 0.0
78
+ * 来源 getNavbarHeight
79
+ */
80
+ navbarHeight?: number;
46
81
  /**
47
82
  * 应用计数器引用
48
83
  *
@@ -142,6 +142,14 @@ export interface IDEGrid extends IMDAjaxControl, IControlContainer, IControlNavi
142
142
  * 来源 getGroupPSCodeList
143
143
  */
144
144
  groupCodeListId?: string;
145
+ /**
146
+ * 分组样式
147
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
148
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
149
+ * @default DEFAULT
150
+ * 来源 getGroupStyle
151
+ */
152
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
145
153
  /**
146
154
  * 附加排序方向
147
155
  * @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
@@ -6,4 +6,62 @@ import { INavigatable } from './inavigatable';
6
6
  * @interface IControlNavigatable
7
7
  */
8
8
  export interface IControlNavigatable extends IControl, INavigatable {
9
+ /**
10
+ * 导航视图高度
11
+ * @type {number}
12
+ * @default 0.0
13
+ * 来源 getNavViewHeight
14
+ */
15
+ navViewHeight?: number;
16
+ /**
17
+ * 导航视图最大高度
18
+ * @type {number}
19
+ * @default 0.0
20
+ * 来源 getNavViewMaxHeight
21
+ */
22
+ navViewMaxHeight?: number;
23
+ /**
24
+ * 导航视图最大宽度
25
+ * @type {number}
26
+ * @default 0.0
27
+ * 来源 getNavViewMaxWidth
28
+ */
29
+ navViewMaxWidth?: number;
30
+ /**
31
+ * 导航视图最小高度
32
+ * @type {number}
33
+ * @default 0.0
34
+ * 来源 getNavViewMinHeight
35
+ */
36
+ navViewMinHeight?: number;
37
+ /**
38
+ * 导航视图最小宽度
39
+ * @type {number}
40
+ * @default 0.0
41
+ * 来源 getNavViewMinWidth
42
+ */
43
+ navViewMinWidth?: number;
44
+ /**
45
+ * 导航视图位置
46
+ * @description 值模式 [多数据部件内置导航视图位置] {NONE:无、 RIGHT:右侧、 BOTTOM:下方、 ANY_RIGHT:任意(默认右侧)、 ANY_BOTTOM:任意(默认下方)、 USER:用户自定义、 USER2:用户自定义2 }
47
+ * @type {( string | 'NONE' | 'RIGHT' | 'BOTTOM' | 'ANY_RIGHT' | 'ANY_BOTTOM' | 'USER' | 'USER2')}
48
+ * @default NONE
49
+ * 来源 getNavViewPos
50
+ */
51
+ navViewPos?: string | 'NONE' | 'RIGHT' | 'BOTTOM' | 'ANY_RIGHT' | 'ANY_BOTTOM' | 'USER' | 'USER2';
52
+ /**
53
+ * 导航视图显示模式
54
+ * @description 值模式 [多数据部件内置导航视图显示模式] {0:默认显示、 1:默认隐藏、 2:始终显示 }
55
+ * @type {( number | 0 | 1 | 2)}
56
+ * @default 0
57
+ * 来源 getNavViewShowMode
58
+ */
59
+ navViewShowMode?: number | 0 | 1 | 2;
60
+ /**
61
+ * 导航视图宽度
62
+ * @type {number}
63
+ * @default 0.0
64
+ * 来源 getNavViewWidth
65
+ */
66
+ navViewWidth?: number;
9
67
  }
@@ -2,6 +2,8 @@ import { IMDControl2 } from '../imdcontrol2';
2
2
  import { IDEListDataItem } from './idelist-data-item';
3
3
  import { IDEListItem } from './idelist-item';
4
4
  import { IList } from './ilist';
5
+ import { ISysCss } from '../../res/isys-css';
6
+ import { IUIActionGroup } from '../../view/iuiaction-group';
5
7
  /**
6
8
  *
7
9
  * 继承父接口类型值[LIST]
@@ -30,6 +32,35 @@ export interface IDEList extends IList, IMDControl2 {
30
32
  * 来源 getGroupPSCodeList
31
33
  */
32
34
  groupCodeListId?: string;
35
+ /**
36
+ * 分组默认界面样式
37
+ *
38
+ * @type {ISysCss}
39
+ * 来源 getGroupPSSysCss
40
+ */
41
+ groupSysCss?: ISysCss;
42
+ /**
43
+ * 分组绘制插件
44
+ *
45
+ * @type {string}
46
+ * 来源 getGroupPSSysPFPlugin
47
+ */
48
+ groupSysPFPluginId?: string;
49
+ /**
50
+ * 分组界面行为组
51
+ *
52
+ * @type {IUIActionGroup}
53
+ * 来源 getGroupPSUIActionGroup
54
+ */
55
+ groupUIActionGroup?: IUIActionGroup;
56
+ /**
57
+ * 分组样式
58
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
59
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
60
+ * @default DEFAULT
61
+ * 来源 getGroupStyle
62
+ */
63
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
33
64
  /**
34
65
  * 默认排序方向
35
66
  * @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { ILanguageRes } from '../../res/ilanguage-res';
4
5
  /**
@@ -6,7 +7,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
6
7
  * @export
7
8
  * @interface IMap
8
9
  */
9
- export interface IMap extends IMDAjaxControl, IControlContainer {
10
+ export interface IMap extends IMDAjaxControl, IControlContainer, IControlNavigatable {
10
11
  /**
11
12
  * 无值显示内容
12
13
  * @type {string}
@@ -204,6 +204,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
204
204
  * 来源 isAppendCaption
205
205
  */
206
206
  appendCaption?: boolean;
207
+ /**
208
+ * 数据排重模式
209
+ * @type {boolean}
210
+ * @default false
211
+ * 来源 isDistinctMode
212
+ */
213
+ distinctMode?: boolean;
207
214
  /**
208
215
  * 支持分页
209
216
  * @type {boolean}
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { IDETreeColumn } from './idetree-column';
4
5
  import { IDETreeNode } from './idetree-node';
@@ -10,7 +11,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
10
11
  * @export
11
12
  * @interface IDETree
12
13
  */
13
- export interface IDETree extends IMDAjaxControl, IControlContainer {
14
+ export interface IDETree extends IMDAjaxControl, IControlContainer, IControlNavigatable {
14
15
  /**
15
16
  * 无值显示内容
16
17
  * @type {string}
@@ -18,6 +18,12 @@ export interface IDELogicNodeParam extends IDELogicNodeParamBase {
18
18
  * 来源 getExpression
19
19
  */
20
20
  expression?: string;
21
+ /**
22
+ * 动态参数
23
+ * @type {IModel}
24
+ * 来源 getParams
25
+ */
26
+ params?: IModel;
21
27
  /**
22
28
  * 源逻辑参数
23
29
  *
@@ -42,6 +42,12 @@ export interface IDELogicParam extends IDELogicParamBase {
42
42
  * 来源 getParamTag2
43
43
  */
44
44
  paramTag2?: string;
45
+ /**
46
+ * 动态参数
47
+ * @type {IModel}
48
+ * 来源 getParams
49
+ */
50
+ params?: IModel;
45
51
  /**
46
52
  * 简单数据类型
47
53
  * @description 值模式 [属性标准数据类型] {0:UNKNOWN、 1:BIGINT、 2:BINARY、 3:BIT、 4:CHAR、 5:DATETIME、 6:DECIMAL、 7:FLOAT、 8:IMAGE、 9:INT、 10:MONEY、 11:NCHAR、 12:NTEXT、 13:NVARCHAR、 14:NUMERIC、 15:REAL、 16:SMALLDATETIME、 17:SMALLINT、 18:SMALLMONEY、 19:SQL_VARIANT、 20:SYSNAME、 21:TEXT、 22:TIMESTAMP、 23:TINYINT、 24:VARBINARY、 25:VARCHAR、 26:UNIQUEIDENTIFIER、 27:DATE、 28:TIME、 29:BIGDECIMAL }
@@ -37,6 +37,19 @@ export interface IUIActionGroupDetail extends IModelObject {
37
37
  * 来源 getDetailTag2
38
38
  */
39
39
  detailTag2?: string;
40
+ /**
41
+ * 启用判断脚本代码
42
+ * @type {string}
43
+ * 来源 getEnableScriptCode
44
+ */
45
+ enableScriptCode?: string;
46
+ /**
47
+ * 前端扩展插件
48
+ *
49
+ * @type {string}
50
+ * 来源 getPSSysPFPlugin
51
+ */
52
+ sysPFPluginId?: string;
40
53
  /**
41
54
  * 界面行为对象
42
55
  *
@@ -56,6 +69,12 @@ export interface IUIActionGroupDetail extends IModelObject {
56
69
  * 来源 getUIActionParamJO
57
70
  */
58
71
  uiactionParamJO?: IModel;
72
+ /**
73
+ * 可见判断脚本代码
74
+ * @type {string}
75
+ * 来源 getVisibleScriptCode
76
+ */
77
+ visibleScriptCode?: string;
59
78
  /**
60
79
  * 添加分隔栏
61
80
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.54",
3
+ "version": "0.1.58",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,11 +1,11 @@
1
- import { IDELogicParamBase } from '../../dataentity/logic/idelogic-param-base';
1
+ import { IDELogicParam } from '../../dataentity/logic/idelogic-param';
2
2
 
3
3
  /**
4
4
  *
5
5
  * @export
6
6
  * @interface IAppDELogicParam
7
7
  */
8
- export interface IAppDELogicParam extends IDELogicParamBase {
8
+ export interface IAppDELogicParam extends IDELogicParam {
9
9
  /**
10
10
  * 参数应用实体对象
11
11
  *
@@ -238,6 +238,13 @@ export interface IApplication extends IModelObject {
238
238
  */
239
239
  appTag4?: string;
240
240
 
241
+ /**
242
+ * 应用类型
243
+ * @type {string}
244
+ * 来源 getAppType
245
+ */
246
+ appType?: string;
247
+
241
248
  /**
242
249
  * 应用版本
243
250
  * @type {string}
@@ -15,6 +15,14 @@ export interface ISubAppRef extends IModelObject {
15
15
  */
16
16
  appDEUIActionGroupIds?: string[];
17
17
 
18
+ /**
19
+ * 合并菜单集合(除默认菜单)
20
+ *
21
+ * @type {string[]}
22
+ * 来源 getAllPSAppMenuModels
23
+ */
24
+ appMenuModelIds?: string[];
25
+
18
26
  /**
19
27
  * 应用视图集合
20
28
  *
@@ -23,6 +31,14 @@ export interface ISubAppRef extends IModelObject {
23
31
  */
24
32
  appViewIds?: string[];
25
33
 
34
+ /**
35
+ * 合并部件集合(除关系部件)
36
+ *
37
+ * @type {string[]}
38
+ * 来源 getAllPSControls
39
+ */
40
+ controlIds?: string[];
41
+
26
42
  /**
27
43
  * 应用实体关系部件集合
28
44
  *
@@ -46,6 +46,14 @@ export interface IAppDEDataSetViewMsg extends IAppViewMsg {
46
46
  */
47
47
  contentAppDEFieldId?: string;
48
48
 
49
+ /**
50
+ * 内容类型应用实体属性对象
51
+ *
52
+ * @type {string}
53
+ * 来源 getContentTypePSAppDEField
54
+ */
55
+ contentTypeAppDEFieldId?: string;
56
+
49
57
  /**
50
58
  * 显示位置应用实体属性对象
51
59
  *
@@ -9,14 +9,15 @@ import { IAppDEExplorerView } from './iapp-deexplorer-view';
9
9
  export interface IAppDETabExplorerView extends IAppDEExplorerView {
10
10
  /**
11
11
  * 分页部件布局模式
12
- * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
13
- * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
12
+ * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 TOP_DROPDOWNLIST:上方(下拉列表)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
13
+ * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
14
14
  * 来源 getTabLayout
15
15
  */
16
16
  tabLayout?:
17
17
  | string
18
18
  | 'TOP'
19
19
  | 'TOP_EMBEDDED'
20
+ | 'TOP_DROPDOWNLIST'
20
21
  | 'LEFT'
21
22
  | 'BOTTOM'
22
23
  | 'RIGHT'
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { IMDControl2 } from '../imdcontrol2';
4
5
  import { ILanguageRes } from '../../res/ilanguage-res';
@@ -11,6 +12,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
11
12
  export interface ICalendar
12
13
  extends IMDAjaxControl,
13
14
  IControlContainer,
15
+ IControlNavigatable,
14
16
  IMDControl2 {
15
17
  /**
16
18
  * 日历样式
@@ -1,3 +1,4 @@
1
+ import { IControlNavigatable } from '../icontrol-navigatable';
1
2
  import { IMDAjaxControl } from '../imdajax-control';
2
3
  import { IChartAngleAxis } from './ichart-angle-axis';
3
4
  import { IChartCoordinateSystem } from './ichart-coordinate-system';
@@ -20,7 +21,7 @@ import { ILanguageRes } from '../../res/ilanguage-res';
20
21
  * @export
21
22
  * @interface IChart
22
23
  */
23
- export interface IChart extends IMDAjaxControl {
24
+ export interface IChart extends IMDAjaxControl, IControlNavigatable {
24
25
  /**
25
26
  * 坐标系统类型
26
27
  * @description 值模式 [实体图表坐标系统] {XY:直角坐标系、 POLAR:极坐标系、 RADAR:雷达坐标系、 PARALLEL:平行坐标系、 SINGLE:单轴坐标系、 CALENDAR:日历坐标系、 MAP:地图坐标系、 NONE:无坐标系 }
@@ -46,8 +46,8 @@ export interface IDashboard
46
46
 
47
47
  /**
48
48
  * 导航栏位置
49
- * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 USER:用户自定义、 USER2:用户自定义2 }
50
- * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'USER' | 'USER2')}
49
+ * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 TOP:上方、 BOTTOM:下方、 USER:用户自定义、 USER2:用户自定义2 }
50
+ * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2')}
51
51
  * 来源 getNavBarPos
52
52
  */
53
53
  navBarPos?:
@@ -58,6 +58,8 @@ export interface IDashboard
58
58
  | 'BOTTOMRIGHT'
59
59
  | 'MIDDLELEFT'
60
60
  | 'MIDDLERIGHT'
61
+ | 'TOP'
62
+ | 'BOTTOM'
61
63
  | 'USER'
62
64
  | 'USER2';
63
65
 
@@ -196,6 +196,15 @@ export interface IDEDataView
196
196
  */
197
197
  groupUIActionGroup?: IUIActionGroup;
198
198
 
199
+ /**
200
+ * 分组样式
201
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
202
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
203
+ * @default DEFAULT
204
+ * 来源 getGroupStyle
205
+ */
206
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
207
+
199
208
  /**
200
209
  * 分组宽度
201
210
  * @type {number}
@@ -23,6 +23,14 @@ export interface IDEDRBarGroup extends IModelObject {
23
23
  */
24
24
  caption?: string;
25
25
 
26
+ /**
27
+ * 头部前端扩展插件
28
+ *
29
+ * @type {string}
30
+ * 来源 getHeaderPSSysPFPlugin
31
+ */
32
+ headerSysPFPluginId?: string;
33
+
26
34
  /**
27
35
  * 分组图片资源对象
28
36
  *
@@ -66,6 +66,14 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
66
66
  | 'COUNT_GT_ZERO'
67
67
  | 'CUSTOM';
68
68
 
69
+ /**
70
+ * 头部前端扩展插件
71
+ *
72
+ * @type {string}
73
+ * 来源 getHeaderPSSysPFPlugin
74
+ */
75
+ headerSysPFPluginId?: string;
76
+
69
77
  /**
70
78
  * 项标记
71
79
  * @type {string}
@@ -18,14 +18,15 @@ export interface ITabExpPanel extends IControl, IControlContainer {
18
18
 
19
19
  /**
20
20
  * 导航面板布局
21
- * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
22
- * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
21
+ * @description 值模式 [分页视图分页栏位置] {TOP:上方(默认)、 TOP_EMBEDDED:上方(嵌入)、 TOP_DROPDOWNLIST:上方(下拉列表)、 LEFT:左侧、 BOTTOM:下方、 RIGHT:右侧、 FLOW:流布局、 FLOW_NOHEADER:流布局(无标题)、 NOHAEDER:无分页栏、 USER:用户自定义、 USER2:用户自定义2 }
22
+ * @type {( string | 'TOP' | 'TOP_EMBEDDED' | 'TOP_DROPDOWNLIST' | 'LEFT' | 'BOTTOM' | 'RIGHT' | 'FLOW' | 'FLOW_NOHEADER' | 'NOHAEDER' | 'USER' | 'USER2')}
23
23
  * 来源 getTabLayout
24
24
  */
25
25
  tabLayout?:
26
26
  | string
27
27
  | 'TOP'
28
28
  | 'TOP_EMBEDDED'
29
+ | 'TOP_DROPDOWNLIST'
29
30
  | 'LEFT'
30
31
  | 'BOTTOM'
31
32
  | 'RIGHT'
@@ -1,6 +1,7 @@
1
1
  import { IControlAction } from '../icontrol-action';
2
2
  import { ISDAjaxControl } from '../isdajax-control';
3
3
  import { IDEForm } from './ideform';
4
+ import { ISysCss } from '../../res/isys-css';
4
5
 
5
6
  /**
6
7
  *
@@ -49,6 +50,56 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
49
50
  */
50
51
  getControlAction?: IControlAction;
51
52
 
53
+ /**
54
+ * 导航栏样式表
55
+ *
56
+ * @type {ISysCss}
57
+ * 来源 getNavBarPSSysCss
58
+ */
59
+ navBarSysCss?: ISysCss;
60
+
61
+ /**
62
+ * 导航栏位置
63
+ * @description 值模式 [实体表单导航栏位置] {TOPLEFT:左上角、 TOPRIGHT:右上角、 BOTTOMLEFT:左下角、 BOTTOMRIGHT:右下角、 MIDDLELEFT:左侧中间、 MIDDLERIGHT:右侧中间、 TOP:上方、 BOTTOM:下方、 USER:用户自定义、 USER2:用户自定义2 }
64
+ * @type {( string | 'TOPLEFT' | 'TOPRIGHT' | 'BOTTOMLEFT' | 'BOTTOMRIGHT' | 'MIDDLELEFT' | 'MIDDLERIGHT' | 'TOP' | 'BOTTOM' | 'USER' | 'USER2')}
65
+ * 来源 getNavBarPos
66
+ */
67
+ navBarPos?:
68
+ | string
69
+ | 'TOPLEFT'
70
+ | 'TOPRIGHT'
71
+ | 'BOTTOMLEFT'
72
+ | 'BOTTOMRIGHT'
73
+ | 'MIDDLELEFT'
74
+ | 'MIDDLERIGHT'
75
+ | 'TOP'
76
+ | 'BOTTOM'
77
+ | 'USER'
78
+ | 'USER2';
79
+
80
+ /**
81
+ * 导航栏样式
82
+ * @type {string}
83
+ * 来源 getNavBarStyle
84
+ */
85
+ navBarStyle?: string;
86
+
87
+ /**
88
+ * 导航栏宽度
89
+ * @type {number}
90
+ * @default 0.0
91
+ * 来源 getNavBarWidth
92
+ */
93
+ navBarWidth?: number;
94
+
95
+ /**
96
+ * 导航栏高度
97
+ * @type {number}
98
+ * @default 0.0
99
+ * 来源 getNavbarHeight
100
+ */
101
+ navbarHeight?: number;
102
+
52
103
  /**
53
104
  * 应用计数器引用
54
105
  *
@@ -172,6 +172,15 @@ export interface IDEGrid
172
172
  */
173
173
  groupCodeListId?: string;
174
174
 
175
+ /**
176
+ * 分组样式
177
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
178
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
179
+ * @default DEFAULT
180
+ * 来源 getGroupStyle
181
+ */
182
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
183
+
175
184
  /**
176
185
  * 附加排序方向
177
186
  * @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
@@ -6,4 +6,78 @@ import { INavigatable } from './inavigatable';
6
6
  * @export
7
7
  * @interface IControlNavigatable
8
8
  */
9
- export interface IControlNavigatable extends IControl, INavigatable {}
9
+ export interface IControlNavigatable extends IControl, INavigatable {
10
+ /**
11
+ * 导航视图高度
12
+ * @type {number}
13
+ * @default 0.0
14
+ * 来源 getNavViewHeight
15
+ */
16
+ navViewHeight?: number;
17
+
18
+ /**
19
+ * 导航视图最大高度
20
+ * @type {number}
21
+ * @default 0.0
22
+ * 来源 getNavViewMaxHeight
23
+ */
24
+ navViewMaxHeight?: number;
25
+
26
+ /**
27
+ * 导航视图最大宽度
28
+ * @type {number}
29
+ * @default 0.0
30
+ * 来源 getNavViewMaxWidth
31
+ */
32
+ navViewMaxWidth?: number;
33
+
34
+ /**
35
+ * 导航视图最小高度
36
+ * @type {number}
37
+ * @default 0.0
38
+ * 来源 getNavViewMinHeight
39
+ */
40
+ navViewMinHeight?: number;
41
+
42
+ /**
43
+ * 导航视图最小宽度
44
+ * @type {number}
45
+ * @default 0.0
46
+ * 来源 getNavViewMinWidth
47
+ */
48
+ navViewMinWidth?: number;
49
+
50
+ /**
51
+ * 导航视图位置
52
+ * @description 值模式 [多数据部件内置导航视图位置] {NONE:无、 RIGHT:右侧、 BOTTOM:下方、 ANY_RIGHT:任意(默认右侧)、 ANY_BOTTOM:任意(默认下方)、 USER:用户自定义、 USER2:用户自定义2 }
53
+ * @type {( string | 'NONE' | 'RIGHT' | 'BOTTOM' | 'ANY_RIGHT' | 'ANY_BOTTOM' | 'USER' | 'USER2')}
54
+ * @default NONE
55
+ * 来源 getNavViewPos
56
+ */
57
+ navViewPos?:
58
+ | string
59
+ | 'NONE'
60
+ | 'RIGHT'
61
+ | 'BOTTOM'
62
+ | 'ANY_RIGHT'
63
+ | 'ANY_BOTTOM'
64
+ | 'USER'
65
+ | 'USER2';
66
+
67
+ /**
68
+ * 导航视图显示模式
69
+ * @description 值模式 [多数据部件内置导航视图显示模式] {0:默认显示、 1:默认隐藏、 2:始终显示 }
70
+ * @type {( number | 0 | 1 | 2)}
71
+ * @default 0
72
+ * 来源 getNavViewShowMode
73
+ */
74
+ navViewShowMode?: number | 0 | 1 | 2;
75
+
76
+ /**
77
+ * 导航视图宽度
78
+ * @type {number}
79
+ * @default 0.0
80
+ * 来源 getNavViewWidth
81
+ */
82
+ navViewWidth?: number;
83
+ }
@@ -2,6 +2,8 @@ import { IMDControl2 } from '../imdcontrol2';
2
2
  import { IDEListDataItem } from './idelist-data-item';
3
3
  import { IDEListItem } from './idelist-item';
4
4
  import { IList } from './ilist';
5
+ import { ISysCss } from '../../res/isys-css';
6
+ import { IUIActionGroup } from '../../view/iuiaction-group';
5
7
 
6
8
  /**
7
9
  *
@@ -34,6 +36,39 @@ export interface IDEList extends IList, IMDControl2 {
34
36
  */
35
37
  groupCodeListId?: string;
36
38
 
39
+ /**
40
+ * 分组默认界面样式
41
+ *
42
+ * @type {ISysCss}
43
+ * 来源 getGroupPSSysCss
44
+ */
45
+ groupSysCss?: ISysCss;
46
+
47
+ /**
48
+ * 分组绘制插件
49
+ *
50
+ * @type {string}
51
+ * 来源 getGroupPSSysPFPlugin
52
+ */
53
+ groupSysPFPluginId?: string;
54
+
55
+ /**
56
+ * 分组界面行为组
57
+ *
58
+ * @type {IUIActionGroup}
59
+ * 来源 getGroupPSUIActionGroup
60
+ */
61
+ groupUIActionGroup?: IUIActionGroup;
62
+
63
+ /**
64
+ * 分组样式
65
+ * @description 值模式 [部件分组样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
66
+ * @type {( string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
67
+ * @default DEFAULT
68
+ * 来源 getGroupStyle
69
+ */
70
+ groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
71
+
37
72
  /**
38
73
  * 默认排序方向
39
74
  * @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { ILanguageRes } from '../../res/ilanguage-res';
4
5
 
@@ -7,7 +8,10 @@ import { ILanguageRes } from '../../res/ilanguage-res';
7
8
  * @export
8
9
  * @interface IMap
9
10
  */
10
- export interface IMap extends IMDAjaxControl, IControlContainer {
11
+ export interface IMap
12
+ extends IMDAjaxControl,
13
+ IControlContainer,
14
+ IControlNavigatable {
11
15
  /**
12
16
  * 无值显示内容
13
17
  * @type {string}
@@ -234,6 +234,14 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
234
234
  */
235
235
  appendCaption?: boolean;
236
236
 
237
+ /**
238
+ * 数据排重模式
239
+ * @type {boolean}
240
+ * @default false
241
+ * 来源 isDistinctMode
242
+ */
243
+ distinctMode?: boolean;
244
+
237
245
  /**
238
246
  * 支持分页
239
247
  * @type {boolean}
@@ -1,4 +1,5 @@
1
1
  import { IControlContainer } from '../icontrol-container';
2
+ import { IControlNavigatable } from '../icontrol-navigatable';
2
3
  import { IMDAjaxControl } from '../imdajax-control';
3
4
  import { IDETreeColumn } from './idetree-column';
4
5
  import { IDETreeNode } from './idetree-node';
@@ -11,7 +12,10 @@ import { ILanguageRes } from '../../res/ilanguage-res';
11
12
  * @export
12
13
  * @interface IDETree
13
14
  */
14
- export interface IDETree extends IMDAjaxControl, IControlContainer {
15
+ export interface IDETree
16
+ extends IMDAjaxControl,
17
+ IControlContainer,
18
+ IControlNavigatable {
15
19
  /**
16
20
  * 无值显示内容
17
21
  * @type {string}
@@ -21,6 +21,13 @@ export interface IDELogicNodeParam extends IDELogicNodeParamBase {
21
21
  */
22
22
  expression?: string;
23
23
 
24
+ /**
25
+ * 动态参数
26
+ * @type {IModel}
27
+ * 来源 getParams
28
+ */
29
+ params?: IModel;
30
+
24
31
  /**
25
32
  * 源逻辑参数
26
33
  *
@@ -49,6 +49,13 @@ export interface IDELogicParam extends IDELogicParamBase {
49
49
  */
50
50
  paramTag2?: string;
51
51
 
52
+ /**
53
+ * 动态参数
54
+ * @type {IModel}
55
+ * 来源 getParams
56
+ */
57
+ params?: IModel;
58
+
52
59
  /**
53
60
  * 简单数据类型
54
61
  * @description 值模式 [属性标准数据类型] {0:UNKNOWN、 1:BIGINT、 2:BINARY、 3:BIT、 4:CHAR、 5:DATETIME、 6:DECIMAL、 7:FLOAT、 8:IMAGE、 9:INT、 10:MONEY、 11:NCHAR、 12:NTEXT、 13:NVARCHAR、 14:NUMERIC、 15:REAL、 16:SMALLDATETIME、 17:SMALLINT、 18:SMALLMONEY、 19:SQL_VARIANT、 20:SYSNAME、 21:TEXT、 22:TIMESTAMP、 23:TINYINT、 24:VARBINARY、 25:VARCHAR、 26:UNIQUEIDENTIFIER、 27:DATE、 28:TIME、 29:BIGDECIMAL }
@@ -43,6 +43,21 @@ export interface IUIActionGroupDetail extends IModelObject {
43
43
  */
44
44
  detailTag2?: string;
45
45
 
46
+ /**
47
+ * 启用判断脚本代码
48
+ * @type {string}
49
+ * 来源 getEnableScriptCode
50
+ */
51
+ enableScriptCode?: string;
52
+
53
+ /**
54
+ * 前端扩展插件
55
+ *
56
+ * @type {string}
57
+ * 来源 getPSSysPFPlugin
58
+ */
59
+ sysPFPluginId?: string;
60
+
46
61
  /**
47
62
  * 界面行为对象
48
63
  *
@@ -65,6 +80,13 @@ export interface IUIActionGroupDetail extends IModelObject {
65
80
  */
66
81
  uiactionParamJO?: IModel;
67
82
 
83
+ /**
84
+ * 可见判断脚本代码
85
+ * @type {string}
86
+ * 来源 getVisibleScriptCode
87
+ */
88
+ visibleScriptCode?: string;
89
+
68
90
  /**
69
91
  * 添加分隔栏
70
92
  * @type {boolean}