From d5f5e8ca34ec31665fc10a1caba5a37c0150e75a Mon Sep 17 00:00:00 2001 From: youngS Date: Mon, 29 Mar 2021 20:04:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=80=E4=B8=AAbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fir_client/src/components/FirApps.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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