CNCEC_APP/uni_modules/uview-pro/libs/config/zIndex.ts

31 lines
634 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 组件库 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;