|
@@ -806,6 +806,15 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async checkAllowedClient() {
|
|
async checkAllowedClient() {
|
|
|
|
+ if (process.env.VUE_APP_SKIP_CHECK_NATIVE === "true") {
|
|
|
|
+ console.log(
|
|
|
|
+ "环境检查: process.env.VUE_APP_SKIP_CHECK_NATIVE === " +
|
|
|
|
+ process.env.VUE_APP_SKIP_CHECK_NATIVE,
|
|
|
|
+ " 允许浏览器访问"
|
|
|
|
+ );
|
|
|
|
+ this.disableLoginBtnBecauseNotAllowedNative = false;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
// if (!this.FE_FEATURE_ALLOW_CHECK) {
|
|
// if (!this.FE_FEATURE_ALLOW_CHECK) {
|
|
// this.disableLoginBtnBecauseNotAllowedNative = false;
|
|
// this.disableLoginBtnBecauseNotAllowedNative = false;
|
|
// return;
|
|
// return;
|