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' } 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', }