UNPKG

create-iking-admin

Version:

金合技术中台脚手架

45 lines (39 loc) 858 B
/* * @Author: wfl * @LastEditors: wfl * @description: * @updateInfo: * @Date: 2022-07-29 11:45:14 * @LastEditTime: 2022-08-03 14:37:55 */ export const SIDE_BAR_MINI_WIDTH = 48; export const SIDE_BAR_SHOW_TIT_MINI_WIDTH = 80; export enum ContentEnum { // auto width FULL = 'full', // fixed width FIXED = 'fixed', } // menu theme enum export enum ThemeEnum { DARK = 'dark', LIGHT = 'light', } export enum SettingButtonPositionEnum { AUTO = 'auto', HEADER = 'header', FIXED = 'fixed', } export enum SessionTimeoutProcessingEnum { ROUTE_JUMP, PAGE_COVERAGE, } // Route switching animation export enum RouterTransitionEnum { ZOOM_FADE = 'zoom-fade', ZOOM_OUT = 'zoom-out', FADE_SIDE = 'fade-slide', FADE = 'fade', FADE_BOTTOM = 'fade-bottom', FADE_SCALE = 'fade-scale', }