luyanan vor 6 Jahren
Ursprung
Commit
37a5603ad8
2 geänderte Dateien mit 11 neuen und 16 gelöschten Zeilen
  1. 0 12
      src/components/Main.vue
  2. 11 4
      src/main.js

+ 0 - 12
src/components/Main.vue

@ -15,20 +15,8 @@
15 15
<script type="text/ecmascript-6">
16 16
  import TheHeader from './main-views/TheHeader.vue';
17 17
  import TheFooter from './main-views/TheFooter.vue';
18
  import Cookies from 'js-cookie';
19
  import PLAT from '../../static/plat-info';
20 18
21 19
  export default {
22
    data() {
23
      return {
24
        plat: {}
25
      };
26
    },
27
    mounted() {
28
      this.plat = PLAT.info;
29
      Cookies.set('platId', this.plat.id);
30
      Cookies.set('platSource', this.plat.source);
31
    },
32 20
    components: {
33 21
      TheHeader,
34 22
      TheFooter

+ 11 - 4
src/main.js

@ -15,6 +15,9 @@ import '../static/ueditor/ueditor.all.js';
15 15
import '../static/ueditor/lang/zh-cn/zh-cn.js';
16 16
import '../static/ueditor/ueditor.parse.js';
17 17
18
import Cookies from 'js-cookie';
19
import PLAT from '../static/plat-info';
20
18 21
Vue.use(axiosH);
19 22
Vue.use(ElementUI);
20 23
Vue.use(Loading);
@ -27,11 +30,15 @@ new Vue({
27 30
  el: '#app',
28 31
  router: router,
29 32
  render: h => h(App),
30
  data: {
31
33
  data() {
34
    return {
35
      plat: {}
36
    };
32 37
  },
33
  mounted () {
34
38
  mounted() {
39
    this.plat = PLAT.info;
40
    Cookies.set('platId', this.plat.id);
41
    Cookies.set('platSource', this.plat.source);
35 42
  },
36 43
  created () {
37 44
    router.afterEach((to, from, next) => {