fix(系统设置): 开源版本授权管理页面控制台报错

This commit is contained in:
shiziyuan9527 2022-12-29 15:44:38 +08:00 committed by lyh
parent 5d573053bb
commit f043506e42
1 changed files with 3 additions and 1 deletions

View File

@ -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;
})
},