htui-yllkbz 1.2.51 → 1.2.52
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 +1 -1
- package/src/packages/type.ts +4 -4
package/package.json
CHANGED
package/src/packages/type.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-10-25 17:05:17
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-01-
|
|
7
|
+
* @LastEditTime: 2022-01-13 15:08:32
|
|
8
8
|
*/
|
|
9
9
|
/** 初始的默认条数 */
|
|
10
10
|
export const defalutPageSize = 10
|
|
@@ -70,10 +70,10 @@ export interface Column {
|
|
|
70
70
|
/** 时间是否跨行展示 */
|
|
71
71
|
spread?: boolean;
|
|
72
72
|
/** 通过type展示相应的数据 用户id|部门id|时间格式化|是否布尔值*/
|
|
73
|
-
type?: 'userId' | 'org' | 'time' | 'common' | 'boolean' | 'img'
|
|
73
|
+
type?: 'userId' | 'org' | 'time' | 'common' | 'boolean' | 'img';
|
|
74
74
|
/** 只有当type='common'时候有效 数据类型个ca common里面的一样但不包括时间 时间使用time */
|
|
75
|
-
commonType?: 'userId' | 'departmentId' | 'baseDataId' | 'roleId' | 'baseDataName' | 'baseDataValue'
|
|
76
|
-
showOverflowTooltip?: boolean
|
|
75
|
+
commonType?: 'userId' | 'departmentId' | 'baseDataId' | 'roleId' | 'baseDataName' | 'baseDataValue';
|
|
76
|
+
showOverflowTooltip?: boolean;
|
|
77
77
|
/** 筛选时候是否禁用 */
|
|
78
78
|
disabled?: boolean;
|
|
79
79
|
}
|