diff --git a/fir_client/src/components/FirApps.vue b/fir_client/src/components/FirApps.vue index 757b95b..0a7b63d 100644 --- a/fir_client/src/components/FirApps.vue +++ b/fir_client/src/components/FirApps.vue @@ -77,7 +77,7 @@ {{ analyseappinfo.version}} (Build {{ analyseappinfo.buildversion}}) {{ - analyseappinfo|getiOStype}} + analyseappinfo.release_type_id|getiOStype}} - {{ analyseappinfo.udid.length @@ -872,11 +872,11 @@ formatMoney: function (money) { return format_money(money, 19); }, - getiOStype: function (appinfo) { + getiOStype: function (release_type_id) { let ftype = ''; - if (appinfo.release_type_id === 1) { + if (release_type_id === 1) { ftype = '内测版' - } else if (appinfo.release_type_id === 2) { + } else if (release_type_id === 2) { ftype = '企业版' } return ftype