Files
kccharge-app/sheep/util/dict.js
T
2025-10-28 09:25:46 +08:00

26 lines
424 B
JavaScript

/** 终端的枚举 */
export const TerminalEnum = {
WECHAT_MINI_PROGRAM: {
terminal: 10,
name: '微信小程序'
},
ALIPAY_APP: {
terminal: 40,
name: '支付宝小程序'
}
// WECHAT_WAP: {
// terminal: 11,
// name: '微信公众号'
// },
// H5: {
// terminal: 20,
// name: 'H5 网页'
// },
// APP: {
// terminal: 31,
// name: '手机 App'
// }
}