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']; } } }