diff --git a/core/core-backend/src/main/java/io/dataease/license/server/LicenseServer.java b/core/core-backend/src/main/java/io/dataease/license/server/LicenseServer.java index a268317e8e..69978d0abe 100644 --- a/core/core-backend/src/main/java/io/dataease/license/server/LicenseServer.java +++ b/core/core-backend/src/main/java/io/dataease/license/server/LicenseServer.java @@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RestController; @RequestMapping("/license") public class LicenseServer implements LicenseApi { - private static final String product = "DataEase"; + private static final String product = "DataEase v2"; @Resource private CoreLicManage coreLicManage; diff --git a/core/core-frontend/src/views/about/index.vue b/core/core-frontend/src/views/about/index.vue index 3fd3c4b07e..a837d29507 100644 --- a/core/core-frontend/src/views/about/index.vue +++ b/core/core-frontend/src/views/about/index.vue @@ -90,7 +90,7 @@ const validateHandler = (param, success) => { } const getLicense = result => { if (result.status === 'valid') { - tipsSuffix.value = result.edition === 'Embedded' ? '套' : '个账号' + tipsSuffix.value = result?.license?.edition === 'Embedded' ? '套' : '个账号' } return { status: result.status,