zhouhao
2022-01-06 8a1128aa873b6a17524df783cd87ad44144c0041
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * @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";