Newer
Older
sxFront / src / views / dashboard / empty.vue
[wangxitong] on 29 Sep 2021 975 bytes first commit
<template>
  <div>
</div>
</template>

<script>
export default {
  name: 'Empty',
  data() {
    return {
    }
  },
  mounted(){
  },
  methods: {
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.dashboard {
  &-container {
    margin-bottom: 30px;
    height: 100%;
  }
  &-img{
    background: url("../../assets/index_images/u6.png") no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    height: 187px;
  }
}
.title{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: space-between;
  align-items: center;
  background-color: white;
  .title-name{
    width: 150px;
    font-weight: bold;
    padding-left: 20px;
  }
}
.block-container{
  padding: 20px;
  background-color: white;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*margin: 0.04rem;*/
  .block{
    width: 25%;
    height: 45%;
  }
}
</style>