Quellcode durchsuchen

静态引入plat-info.js

luyanan vor 6 Jahren
Ursprung
Commit
4cb95479f0
3 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. 1 0
      index.html
  2. 2 2
      src/main.js
  3. 1 1
      static/plat-info.js

+ 1 - 0
index.html

@ -6,6 +6,7 @@
6 6
  	<meta name="description" content="">
7 7
  	<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
8 8
  	<link rel="shortcut icon" type="image/png" href="./static/favicon.ico">
9
    <script type="text/javascript" src="static/plat-info.js"></script>
9 10
  	<title></title>
10 11
  </head>
11 12
  <body>

+ 2 - 2
src/main.js

@ -16,7 +16,6 @@ import '../static/ueditor/lang/zh-cn/zh-cn.js';
16 16
import '../static/ueditor/ueditor.parse.js';
17 17
18 18
import Cookies from 'js-cookie';
19
import '../static/plat-info';
20 19
21 20
Vue.use(axiosH);
22 21
Vue.use(ElementUI);
@ -25,7 +24,7 @@ Vue.use(BackTop);
25 24
Vue.use(defaultPage);
26 25
Vue.use(CityPick);
27 26
28
var PLAT = global.PLAT;
27
// var PLAT = window.PLAT;
29 28
30 29
/* eslint-disable no-new */
31 30
new Vue({
@ -38,6 +37,7 @@ new Vue({
38 37
    };
39 38
  },
40 39
  mounted() {
40
    /* eslint-disable no-undef */
41 41
    this.plat = PLAT.info;
42 42
    document.title = this.plat.title;
43 43
    Cookies.set('platId', this.plat.id);

+ 1 - 1
static/plat-info.js

@ -23,5 +23,5 @@ PLAT.info = {
23 23
  ]
24 24
};
25 25
26
global.PLAT = PLAT;
26
window.PLAT = PLAT;
27 27
// export default PLAT;