This commit is contained in:
liqiang-fit2cloud 2022-12-29 16:33:48 +08:00
commit 036186a5fa
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;
})
},