export enum AdStatus { AD_LOAD = 'onAdLoad', AD_FAIL = 'onAdFail', AD_OPEN = 'onAdOpen', AD_CLICKED = 'onAdClick', AD_CLOSED = 'onAdClose', AD_REWARDED = 'onAdReward', AD_VIDEO_START = 'onVideoPlayBegin', AD_COMPLETED = 'onVideoPlayEnd' } //微信APP_ID export const APP_ID: string = '' export enum AppStorageKeyCollect { /** * @type string * @description 用户登录令牌token */ TOKEN = 'token', /** * @type string * @description 验证码登录防伪标识 */ UUID = 'uuid', /** * @type string * @description 设备唯一标识 */ OAID = 'oaid', /** * @type boolean * @description 是否已加载广告 */ AD_IS_LOADED = 'isLoaded', /** * @type Record * @description 验证码登录手机号与验证码 */ CAPTCHA_LOGIN = 'captchaLogin', /** * @type number * @description 屏幕宽度 */ SCREEN_WIDTH = 'screenWidth', /** * @type number * @description 屏幕高度 */ SCREEN_HEIGHT = 'screenHeight', /** * @type string * @description 推送token */ PUSH_TOKEN = 'pushToken', /** * @type boolean * @description 是否首次进入APP */ FIRST_ENTER_APP = 'firstEnterApp', /** * @type boolean * @description 是否为单机状态下的app */ IS_STAND_ALONE_APP = 'IsStandAloneApp' } export enum EmitterKeyCollection { /** * @description 刷新已经渲染的食物列表 */ REFRESH_FOOD_LIST = 'refreshFoodList', /** * @description 删除并刷新文件夹 */ DELETE_AND_REFRESH_FOLDER = 'deleteAndRefreshFolder', /** * @description 登录 */ LOGIN = 'userLoginIn', /** * @description 登出 */ LOGOUT = 'UserLogout', /** * @description 全选删除 */ GROUP_SELECTED_DELETE = 'groupSelected', /** * @description 选择项恢复初始状态 */ SELECTED_RESET = 'selectedReset', /** * @description 刷新日历数据 */ REFRESH_CALENDER_DATA = 'refreshCalenderData', /** * @description 刷新当前选中日期数据 */ REFRESH_CURRENT_DATE_DATA = 'refreshCurrentDateData', }