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

26 lines
508 B
JavaScript

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