index.vue 527 Bytes
Newer Older
xiexingan's avatar
xiexingan committed
1 2
<template lang="pug">
    div.infopage()
xiexingan's avatar
xiexingan committed
3
      font(class='index-title') 欢迎访问山南站AI节能管理系统
xiexingan's avatar
xiexingan committed
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

</template>

<script>

export default {

  data() {
    return {

    }
  },
  methods: {

  }
}
</script>

<style lang="scss" scoped>
@import "~@/assets/style/public.scss";
 .infopage{
    margin:0 20px 0 24px;
    height: 700px;
    .index-title {
    width: 720px;
    // height: 50px;
    font-size: 48px;
    font-weight: 500;
    color: #033869;

    display: block;
    margin: 20% auto;
  }
 }
</style>