|
@@ -415,16 +415,17 @@ export default {
|
|
|
this.edition = "pro";
|
|
|
this.systemLevel = this.$t("system.flagship");
|
|
|
} else if (
|
|
|
- resultVersions === "undefined" ||
|
|
|
+ resultVersions === undefined &&
|
|
|
resultService !== "undefined"
|
|
|
) {
|
|
|
this.edition = "standard";
|
|
|
this.systemLevel = this.$t("system.advanced");
|
|
|
} else if (
|
|
|
- resultVersions === "undefined" ||
|
|
|
- resultService === "undefined"
|
|
|
+ resultVersions === undefined &&
|
|
|
+ resultService === undefined
|
|
|
) {
|
|
|
this.edition = "basic";
|
|
|
+
|
|
|
this.systemLevel = this.$t("system.basic");
|
|
|
} else {
|
|
|
this.edition = "basic";
|