[代码完善](v2.6): 适配Nginx反向代理部署/工信部地址更新
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
ENV = 'production'
|
||||
|
||||
# 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',后续文档更新 Nginx 反向部署教程
|
||||
# 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',文件查看 Docker 部署篇,Nginx 配置
|
||||
# 接口地址,注意协议,如果你没有配置 ssl,需要将 https 改为 http
|
||||
VUE_APP_BASE_API = 'https://api.auauz.net'
|
||||
# 如果接口是 http 形式, wss 需要改为 ws
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<div v-if="$store.state.settings.showFooter" id="el-main-footer">
|
||||
<span v-html="$store.state.settings.footerTxt" />
|
||||
<span> ⋅ </span>
|
||||
<a href="http://www.beian.miit.gov.cn" target="_blank">{{ $store.state.settings.caseNumber }}</a>
|
||||
<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">{{ $store.state.settings.caseNumber }}</a>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
@@ -23,11 +23,10 @@ router.beforeEach((to, from, next) => {
|
||||
NProgress.done()
|
||||
} else {
|
||||
if (store.getters.roles.length === 0) { // 判断当前用户是否已拉取完user_info信息
|
||||
store.dispatch('GetInfo').then(res => { // 拉取user_info
|
||||
store.dispatch('GetInfo').then(() => { // 拉取user_info
|
||||
// 动态路由,拉取菜单
|
||||
loadMenus(next, to)
|
||||
}).catch((err) => {
|
||||
console.log(err)
|
||||
}).catch(() => {
|
||||
store.dispatch('LogOut').then(() => {
|
||||
location.reload() // 为了重新实例化vue-router对象 避免bug
|
||||
})
|
||||
@@ -35,7 +34,7 @@ router.beforeEach((to, from, next) => {
|
||||
// 登录时未拉取 菜单,在此处拉取
|
||||
} else if (store.getters.loadMenus) {
|
||||
// 修改成false,防止死循环
|
||||
store.dispatch('updateLoadMenus').then(res => {})
|
||||
store.dispatch('updateLoadMenus')
|
||||
loadMenus(next, to)
|
||||
} else {
|
||||
next()
|
||||
|
||||
Reference in New Issue
Block a user