@ningboyz/types 1.5.148 → 1.5.150
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
|
@@ -33,6 +33,8 @@ export interface IWtuiItemParaResponse {
|
|
|
33
33
|
relativeFormUrl: string | undefined;
|
|
34
34
|
/** 对齐方式(1:左对齐 2:居中 3:右对齐) */
|
|
35
35
|
itemPostion: number | undefined;
|
|
36
|
+
/** 影响字段列表 */
|
|
37
|
+
effectTable: IRelativeFormData[];
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
@@ -68,4 +70,16 @@ export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
|
68
70
|
relativeFormUrl: string | undefined = undefined;
|
|
69
71
|
/** 对齐方式(1:左对齐 2:居中 3:右对齐) */
|
|
70
72
|
itemPostion: number | undefined = 1;
|
|
73
|
+
effectTable: IRelativeFormData[] = [];
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface IRelativeFormData {
|
|
77
|
+
entityId: string;
|
|
78
|
+
glField: string;
|
|
79
|
+
effectField: string;
|
|
80
|
+
}
|
|
81
|
+
export class TRelativeFormData implements IRelativeFormData {
|
|
82
|
+
entityId: string = "";
|
|
83
|
+
glField: string = "";
|
|
84
|
+
effectField: string = "";
|
|
71
85
|
}
|