首次完整推送,
V:1.20240808.006
This commit is contained in:
55
apis/ctms/_utils/constant.js
Normal file
55
apis/ctms/_utils/constant.js
Normal file
@ -0,0 +1,55 @@
|
||||
//缓存变量的键名
|
||||
const constant = {
|
||||
storageKey: 'ctmsClientStore', //缓存键名,必须有
|
||||
user: 'userinfo', //用户信息
|
||||
|
||||
orderBookForm: {
|
||||
'prefix': 'OrderBookDraft'
|
||||
}, //运单询价草稿
|
||||
orderBookSearch: "OrderBookSearch", //询价订单查询表单
|
||||
orderBookList: {
|
||||
'prefix': "OrderBookList"
|
||||
}, //询价缓存,
|
||||
orderBookDetail: {
|
||||
'prefix': "OrderBookDetail"
|
||||
}, //询价单详情,拼接oid订单ID参数
|
||||
|
||||
orderCreateForm: {
|
||||
'prefix': 'OrderCreateDraft'
|
||||
}, //运单创建草稿
|
||||
orderSearchS: 'OrderSearchSimple', //简单运单查询表单
|
||||
orderSearchA: "OrderSearchAll", //完整运单查询表单
|
||||
orderList: {
|
||||
'prefix': "OrderList"
|
||||
}, //运单缓存,根据页面情况拼接参数;重新查询时应及时更新
|
||||
orderDetail: {
|
||||
'prefix': "OrderDetail"
|
||||
}, //运单详情,拼接oid订单ID参数
|
||||
orderCheck: {
|
||||
'prefix': "OrderCheckInfo"
|
||||
}, //运单详情,拼接oid订单ID参数
|
||||
|
||||
noticeList: {
|
||||
'prefix': "NoticeList"
|
||||
},
|
||||
noticeDetail: {
|
||||
'prefix': "NoticeDetail"
|
||||
},
|
||||
|
||||
newsList: {
|
||||
'prefix': "NewsList"
|
||||
},
|
||||
newsDetail: {
|
||||
'prefix': "NewsDetail"
|
||||
},
|
||||
newsReading: "NewsReading",
|
||||
newsLiked: "NewsLiked",
|
||||
newsViewed: "NewsViewed",
|
||||
|
||||
userLoginForm: "fansLoginForm",
|
||||
userRegForm: "fansRegForm",
|
||||
|
||||
splashShowed: "splashShowed" //已显示过开屏页
|
||||
}
|
||||
|
||||
export default constant
|
Reference in New Issue
Block a user