zhouwenxuan
2024-03-05 891ff0e6e9d038f33685626dec284dad758c3e2f
Merge remote-tracking branch 'origin/master'
已添加1个文件
70 ■■■■■ 文件已修改
src/views/system/subSys/index.vue 70 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/subSys/index.vue
对比新文件
@@ -0,0 +1,70 @@
<template>
  <div class="app-container" style="width: 100%;height: calc(100vh - 84px)">
    <div class="container">
      <div>
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>文字描述</div>
      </div>
      <div>
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>文字描述</div>
      </div>
      <div>
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>文字描述</div>
      </div>
      <div>
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>文字描述</div>
      </div>
      <div>
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>文字描述</div>
      </div>
    </div>
  </div>
</template>
<script>
import cover from '@/assets/images/systemCover.jpg'
export default {
  name: "cardPlatform",
  dicts: [],
  components: { },
  data() {
    return {
      cover: cover
    }
  },
  created() {
  },
  methods: {
  }
};
</script>
<style lang="scss" scoped>
.container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  white-space: normal;
  &>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 10px;
    box-sizing: border-box;
    width: 25%;
    div{
      font-size: 14px;
      margin-top: 20px;
      text-align: center;
    }
  }
}
</style>