[修改]修改两个组件的父名称

This commit is contained in:
zer0Black
2021-03-11 09:53:44 +08:00
parent 042d25053f
commit 35eb1449d4
135 changed files with 164 additions and 165 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ import { ACCESS_TOKEN, TENANT_ID } from "@/store/mutation-types"
/**
* 【指定 axios的 baseURL】
* 如果手工指定 baseURL: '/jeecg-boot'
* 如果手工指定 baseURL: '/jero-boot'
* 则映射后端域名,通过 vue.config.js
* @type {*|string}
*/
@@ -15,7 +15,7 @@ let apiBaseUrl = window._CONFIG['domianURL'] || "/jeecg-boot";
//console.log("apiBaseUrl= ",apiBaseUrl)
// 创建 axios 实例
const service = axios.create({
//baseURL: '/jeecg-boot',
//baseURL: '/jero-boot',
baseURL: apiBaseUrl, // api base_url
timeout: 9000 // 请求超时时间
})