This commit is contained in:
2026-03-25 14:54:15 +08:00
commit ab4646b43a
827 changed files with 123812 additions and 0 deletions
@@ -0,0 +1,30 @@
/**
* 组件库 z-index 配置项类型定义
*/
export interface ZIndexConfig {
toast: number;
noNetwork: number;
/** popup包含popupactionSheetkeyboardpicker的值 */
popup: number;
mask: number;
navbar: number;
topTips: number;
sticky: number;
indexListSticky: number;
tabbar: number;
}
const zIndex: ZIndexConfig = {
toast: 10090,
noNetwork: 10080,
// popup包含popupactionSheetkeyboardpicker的值
popup: 10075,
mask: 10070,
navbar: 980,
topTips: 975,
sticky: 970,
indexListSticky: 965,
tabbar: 998
};
export default zIndex;