/** * 主题 * @author wangchuitong */ export enum Fields_theme{ afc = 'afc', } /** * 按钮类型 * @author wangchuitong */ export enum Fields_btn_type{ search = 1, reset, } /** * 字段 * @author wangchuitong */ export enum Fields_config{ com_props = 500, wheel_disabled, auth_map_func, icon_script_url, redux_store, history, model_default_namespace, } /** * 自定义变量 * @author wangchuitong */ export enum Fields_const{ script_url = '//at.alicdn.com/t/c/font_3316527_2h70xleojw5.js' } /** * 按键键值 * @author wangchuitong */ export enum Fields_keyboard_code{ backspace = 8, tab = 9, enter = 13, shift = 16, ctrl = 17, alt = 18, caps = 20, esc = 27, // 键值 ArrowUp 38 // 键值 ArrowDown 40 // 键值 ArrowLeft 37 // 键值 ArrowRight 39 space = 32, up = 38, down = 40, left = 37, right = 39, delete = 46, meta = 91, context = 93, }