| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- 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<string, string>
- * @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',
- }
|