index.html
1.14 KB
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
<!--
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-06-20 09:56:19
-->
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="renderer" content="webkit">
  <meta name="referrer" content="no-referrer" />
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
  <title>
  </title>
</head>
<script>
  window._config = {
    // 是否微服务模式,业务系统根据需要读取,此demo未使用
    cloudEnable: false,
    baseUrl: location.origin || location.protocol + '//' + location.host,
    // 是否启用单点登录
    casEnable: false,
    // cas 基地址
    casBaseURL: 'http://192.168.2.38/cas',
    services: {
      // 配置到 contextPath 前一级
      management: 'http://192.168.2.38',
      business: 'http://localhost:7001'
    }
  }
  fetch('<%= BASE_URL %>config.json')
    .then(response => response.json())
    .then(config => {
      window.config = config
    })
</script>
<body>
  <div id="app"></div>
</body>
</html>