oak-pay-business/es/utils/wpProduct.js

20 lines
398 B
JavaScript

export function getAppTypeFromProductType(type) {
switch (type) {
case 'app': {
return ['native'];
}
case 'h5': {
return ['web'];
}
case 'jsapi': {
return ['wechatPublic'];
}
case 'mp': {
return ['wechatMp'];
}
case 'native': {
return ['web'];
}
}
}