/* * @Descripttion: 使用常量替代 mutation 事件类型,把这些常量放在单独的文件中可以让整个 app 包含的 mutation 一目了然 * @Author: TM丶 * @LastEditors: 小明丶 * @Date: 2019-04-06 21:41:06 * @LastEditTime: 2020-11-17 10:14:01 */ export const SET_APP_LOADING = "SET_APP_LOADING"; export const SET_SESSION_ID = "SET_SESSION_ID"; export const SET_USER_INFO = "SET_USER_INFO"; // 设置地区列表 export const SET_AREA_LIST = "SET_AREA_LIST"; //消息 export const SET_MESSAGE_CONUT = "SET_MESSAGE_CONUT"; // 设置用户的底部导航菜单 export const SET_FOOTER_NAV = "SET_FOOTER_NAV"; // 设置用户的权限页面 export const SET_USER_PAGE = "SET_USER_PAGE"; export const SET_INVITE_CODE = "SET_INVITE_CODE"; export const SET_BCAKCOLOR = "SET_BCAKCOLOR"; export const SET_BCJBCOLORF = "SET_BCJBCOLORF"; export const SET_BCJBCOLORB = "SET_BCJBCOLORB"; export const SET_DEFAULT_BG_COLOR = "SET_DEFAULT_BG_COLOR"; export const SET_LAST_COLOR = "SET_LAST_COLOR";