v3.9.0【优化】typescript版本;【优化】App端消息;【优化】弹出层z-index;

This commit is contained in:
zhuoda
2024-11-04 20:15:49 +08:00
parent 17a3e1fd86
commit 69fa9088f5
1376 changed files with 10373 additions and 9712 deletions

View File

@@ -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
};

View 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
};