From f043506e42f927852f740999a6fb870de18b16a8 Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Thu, 29 Dec 2022 15:44:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E5=BC=80=E6=BA=90=E7=89=88=E6=9C=AC=E6=8E=88=E6=9D=83=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=A1=B5=E9=9D=A2=E6=8E=A7=E5=88=B6=E5=8F=B0=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/business/system/license/MxLicense.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system-setting/frontend/src/business/system/license/MxLicense.vue b/system-setting/frontend/src/business/system/license/MxLicense.vue index 18c4468963..d4434d3325 100644 --- a/system-setting/frontend/src/business/system/license/MxLicense.vue +++ b/system-setting/frontend/src/business/system/license/MxLicense.vue @@ -100,7 +100,9 @@ export default { search() { this.result = getLicense() .then(response => { - this.license = response.data.license; + if (response.data.license) { + this.license = response.data.license; + } this.status = response.data.status; }) },