@ningboyz/types 1.7.148 → 1.7.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
|
@@ -9,6 +9,7 @@ export const CONST_ITEM_TYPE_TO_弹窗 = 7; // #弹窗
|
|
|
9
9
|
export const CONST_ITEM_TYPE_TO_单据状态 = 8; // #单据状态
|
|
10
10
|
/** 单独的是或否(1,0)选择 */
|
|
11
11
|
export const CONST_ITEM_TYPE_TO_是或否 = 9;
|
|
12
|
+
export const CONST_ITEM_TYPE_TO_收款人 = 10;
|
|
12
13
|
|
|
13
14
|
export const CONST_VALIDATE_TO_弹窗 = 1001; //弹窗
|
|
14
15
|
export const CONST_MODAL_DOUBLE_TABLE_弹窗 = 1002; //表格弹窗
|
|
@@ -39,6 +39,8 @@ export interface IWtuiItemParaResponse {
|
|
|
39
39
|
effectTable: IRelativeFormData[];
|
|
40
40
|
/**数值-是否启用万元/元切换 (默认为否0)*/
|
|
41
41
|
showUnitConvert: number;
|
|
42
|
+
/**列宽*/
|
|
43
|
+
colWidth: number;
|
|
42
44
|
}
|
|
43
45
|
|
|
44
46
|
export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
@@ -77,6 +79,8 @@ export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
|
77
79
|
itemPostion: number | undefined = 1;
|
|
78
80
|
effectTable: IRelativeFormData[] = [];
|
|
79
81
|
showUnitConvert: number = 0;
|
|
82
|
+
/**列宽*/
|
|
83
|
+
colWidth: number=0;
|
|
80
84
|
}
|
|
81
85
|
|
|
82
86
|
export interface IRelativeFormData {
|
|
@@ -2,8 +2,17 @@ export interface IWtuiTodoResponseTodoPara {
|
|
|
2
2
|
menuUUID: string[];
|
|
3
3
|
// 1: 需要传入年度; 0: 传入0 ;undefined: 不传入
|
|
4
4
|
sourcend?: number;
|
|
5
|
+
// 该数据的审核流状态的标识字段
|
|
6
|
+
statField?: string;
|
|
7
|
+
// 接口不传入菜单
|
|
8
|
+
withoutMenuUUID?: boolean;
|
|
9
|
+
// 接口参数
|
|
10
|
+
params?: any;
|
|
5
11
|
}
|
|
6
12
|
|
|
7
13
|
export class TWtuiTodoResponseTodoPara implements IWtuiTodoResponseTodoPara {
|
|
8
14
|
menuUUID: string[] = [];
|
|
15
|
+
statField: string = "";
|
|
16
|
+
withoutMenuUUID: boolean = false;
|
|
17
|
+
params: any = {};
|
|
9
18
|
}
|