|
@@ -124,6 +124,7 @@ export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
appDownloadUrl: "fetching...",
|
|
appDownloadUrl: "fetching...",
|
|
|
|
+ ifShowQr: false,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -140,10 +141,10 @@ export default {
|
|
identityNumber,
|
|
identityNumber,
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- ifShowQr() {
|
|
|
|
- const shouldShow = this.QECSConfig.SHOW_STUDENT_CLIENT_APP_QRCODE;
|
|
|
|
- return shouldShow === "true";
|
|
|
|
- },
|
|
|
|
|
|
+ // ifShowQr() {
|
|
|
|
+ // const shouldShow = this.QECSConfig.SHOW_STUDENT_CLIENT_APP_QRCODE;
|
|
|
|
+ // return shouldShow === "true";
|
|
|
|
+ // },
|
|
getLogo() {
|
|
getLogo() {
|
|
return this.isEpcc
|
|
return this.isEpcc
|
|
? require("./epcc-logo.png")
|
|
? require("./epcc-logo.png")
|
|
@@ -155,6 +156,10 @@ export default {
|
|
"/api/ecs_core/systemProperty/APP_DOWNLOAD_URL"
|
|
"/api/ecs_core/systemProperty/APP_DOWNLOAD_URL"
|
|
);
|
|
);
|
|
this.appDownloadUrl = r.data;
|
|
this.appDownloadUrl = r.data;
|
|
|
|
+ const r2 = await this.$http.get(
|
|
|
|
+ `/api/ecs_core/org/property/${this.user.rootOrgId}/APP_ENABLED`
|
|
|
|
+ );
|
|
|
|
+ this.ifShowQr = r2.data;
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
goChangePwd() {
|
|
goChangePwd() {
|