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