Files
hospital-rescue-app-v2/uni_modules/tmx-ui/components/x-slider-tree/interface.uts
T
2026-09-24 16:25:22 +08:00

13 lines
248 B
Plaintext

/**
* 侧边分类数据
*/
export type SLIDER_TREE_ITEM = {
id : string,
title : string,
children : SLIDER_TREE_ITEM[],
disabled : boolean,
/** 当前选中的id数组 */
selected : string[],
//左侧小图标.
icon:string
}