zhangxiaoxu123456
2022-04-29 3c0c95ffca0c424836683ebeb2d84c77e72c7be9
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
<template>
    <div class="showHome-wrap">
      <showIndexTitle></showIndexTitle>
      <router-view></router-view>
    </div>
</template>
 
<script>
  import showIndexTitle from "../../components/showIndexTitle";
    export default {
        name: "showHome",
        components: {
            showIndexTitle
        }
    }
</script>
 
<style lang="scss" scoped>
  @import "../../../assets/css/base";
  .showHome-wrap{
    width: 10rem  /* 2560/256 */;
    height: 6.25rem  /* 1600/256 */;
    background: url("../../../assets/images/jiashicang-bj.jpg") no-repeat center;
    background-size: 100% 100%;
  }
 
</style>