车辆管理系统-后台管理系统web
spring
3 天以前 9a11bff3d98aea29f37abc34a00a17f5c92ade9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// +----------------------------------------------------------------------
// | CMS [ CMS赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.CMS.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CMS并不是自由软件,未经许可不能去掉CMS相关版权
// +----------------------------------------------------------------------
// | Author: CMS Team <admin@CMS.com>
// +----------------------------------------------------------------------
 
// 请求接口地址:
// - 浏览器运行时可使用 location.origin
// - Node 构建/加载阶段(vue-cli-service 加载 vue.config.js)没有 location,必须兜底
const VUE_APP_API_URL =
  process.env.VUE_APP_BASE_API || "http://1.15.17.182:9031/api/";
module.exports = {
  // 接口请求地址
  apiBaseURL: VUE_APP_API_URL,
 
  title: "CMS",
 
  /**
   * @type {boolean} true | false
   * @description Whether show the settings right-panel
   */
  showSettings: true,
 
  /**
   * @type {boolean} true | false
   * @description Whether need tagsView
   */
  tagsView: true,
 
  /**
   * @type {boolean} true | false
   * @description Whether fix the header
   */
  fixedHeader: true,
 
  /**
   * @type {boolean} true | false
   * @description Whether show the logo in sidebar
   */
  sidebarLogo: true,
 
  /**
   * @type {string | array} 'production' | ['production', 'development']
   * @description Need show err logs component.
   * The default is only used in the production env
   * If you want to also use it in dev, you can pass ['production', 'development']
   */
  errorLog: "production",
};