mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2026-04-24 06:14:26 +08:00
v3.9.0【优化】typescript版本;【优化】App端消息;【优化】弹出层z-index;
This commit is contained in:
@@ -13,6 +13,7 @@ import enterpriseConst from './business/oa/enterprise-const';
|
||||
import goodsConst from './business/erp/goods-const';
|
||||
import changeLogConst from './support/change-log-const';
|
||||
import fileConst from './support/file-const';
|
||||
import messageConst from "./support/message-const";
|
||||
|
||||
export default {
|
||||
FLAG_NUMBER_ENUM,
|
||||
@@ -23,4 +24,5 @@ export default {
|
||||
...goodsConst,
|
||||
...changeLogConst,
|
||||
...fileConst,
|
||||
...messageConst
|
||||
};
|
||||
|
||||
30
smart-app/src/constants/support/message-const.js
Normal file
30
smart-app/src/constants/support/message-const.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* @Description: file content
|
||||
* @Author: yandy
|
||||
* @Date: 2022-07-24 21:43:43
|
||||
* @LastEditors:
|
||||
* @LastEditTime: 2022-07-24 21:43:43
|
||||
*/
|
||||
export const MESSAGE_TYPE_ENUM = {
|
||||
MAIL: {
|
||||
value: 1,
|
||||
desc: '站内信'
|
||||
},
|
||||
ORDER: {
|
||||
value: 2,
|
||||
desc: '订单'
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
export const MESSAGE_RECEIVE_TYPE_ENUM = {
|
||||
EMPLOYEE: {
|
||||
value: 1,
|
||||
desc: '员工'
|
||||
},
|
||||
};
|
||||
|
||||
export default {
|
||||
MESSAGE_TYPE_ENUM,
|
||||
MESSAGE_RECEIVE_TYPE_ENUM
|
||||
};
|
||||
Reference in New Issue
Block a user