处理环境部署代码注释问题

main
许宏杰 2 weeks ago
parent 85c642cffd
commit 99aa4b75b7

@ -4,7 +4,7 @@
# @LastEditors: laozt 2721205210@qq.com
# @LastEditTime: 2024-03-01 16:39:10
# @FilePath: \suzhouyingjiPC\.env.development
###
###
# 页面标题
VUE_APP_TITLE = 苏州市应急执法计划管理系统
@ -12,9 +12,9 @@ VUE_APP_TITLE = 苏州市应急执法计划管理系统
ENV = 'development'
# 苏州市应急执法计划管理系统/开发环境
# VUE_APP_BASE_API = 'http://39.101.188.84:9033'
VUE_APP_BASE_API = 'http://39.101.188.84:9033'
# VUE_APP_BASE_API = 'http://localhost:13002'
VUE_APP_BASE_API = 'http://180.108.205.123:13002'
# VUE_APP_BASE_API = 'http://180.108.205.123:13002'
# 统一登录-内网
VUE_APP_SSO_LOGIN_N = 'http://2.46.4.197:8090/sso-server/oauth2/sso?aid=17847210&cbu=http%3A%2F%2F180.108.205.123%3A13001%2F&response_type=code'
@ -30,3 +30,5 @@ VUE_APP_SSO_LOGOUT_W ='http://180.108.205.123:8090/sso-server/oauth2/logout?aid=
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
VUE_APP_HJ = 'cs'

@ -24,4 +24,6 @@ VUE_APP_SSO_LOGOUT_W ='http://180.108.205.123:8090/sso-server/oauth2/logout?aid=
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
VUE_APP_HJ = 'zs'

@ -38,12 +38,16 @@ export default {
};
},
created() {
//
if(process.env.VUE_APP_HJ == "zs"){
//
xzTree().then((res) => {
localStorage.setItem("TREE_DATA", JSON.stringify(res.data));
});
}
},
mounted() {
console.log(process.env)
// autofit.init(
// {
// designHeight: 1080,

@ -145,8 +145,14 @@ export default {
location.href = process.env.VUE_APP_SSO_LOGOUT_N;
} else {
localStorage.removeItem("isGovernmentAffairsNetwork");
location.href = "/login?redirect=%2Findex";
// this.$router.replace("/login");
if(process.env.VUE_APP_HJ == "zs"){
location.href = "/login?redirect=%2Findex";
}else{
this.$router.replace("/login");
}
}
});
})

@ -162,12 +162,12 @@ const user = {
icon1: require("../../assets/images/qiye.png"),
icon2: require("../../assets/images/qiye-change.png"),
},
// {
// path: "/focusEnter",
// name: "省重点企业",
// icon1: require("../../assets/images/qiye.png"),
// icon2: require("../../assets/images/qiye-change.png"),
// },
{
path: "/focusEnter",
name: "省重点企业",
icon1: require("../../assets/images/qiye.png"),
icon2: require("../../assets/images/qiye-change.png"),
},
];
let arr2 = [];
let A1 = [];

@ -98,7 +98,7 @@
import { getCodeImg } from "@/api/login";
import Cookies from "js-cookie";
import { encrypt, decrypt } from "@/utils/jsencrypt";
// import { xzTree } from "@/api/yingji/keyEnterprise.js";
import { xzTree } from "@/api/yingji/keyEnterprise.js";
export default {
name: "Login",
computed: {
@ -194,10 +194,13 @@ export default {
.dispatch("Login", this.loginForm)
.then(() => {
this.$router.push({ path: "/" });
//
// xzTree().then((res) => {
// localStorage.setItem("TREE_DATA", JSON.stringify(res.data));
// });
if(process.env.VUE_APP_HJ != "zs"){
//
xzTree().then((res) => {
localStorage.setItem("TREE_DATA", JSON.stringify(res.data));
});
}
})
.catch(() => {
this.loading = false;

Loading…
Cancel
Save