cdk
2025-03-24 06e6cf5719a7de9d7919cee2f6fcc3cfc6f9eb9d
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
'use strict';
 
const TAG = "UNI_OPEN_BRIDGE"
 
const HTTP_STATUS = {
  SUCCESS: 200
}
 
const ProviderType = {
  WEIXIN_MP: 'weixin-mp',
  WEIXIN_H5: 'weixin-h5',
  WEIXIN_APP: 'weixin-app',
  WEIXIN_WEB: 'weixin-web',
  QQ_MP: 'qq-mp',
  QQ_APP: 'qq-app'
}
 
// old
const PlatformType = ProviderType
 
const ErrorCodeType = {
  SYSTEM_ERROR: TAG + "_SYSTEM_ERROR"
}
 
module.exports = {
  HTTP_STATUS,
  ProviderType,
  PlatformType,
  ErrorCodeType
}