yz
2021-01-28 05391893459cfbc75500c7eea969132cb261aeaf
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<template>
  <el-container>
    <el-aside width="200px">
      <el-card class="info-card" shadow="always" @click.native="isShow(showArr[0].show,0)">
        我的文件夹 +
      </el-card>
      <el-card class="info-card" shadow="always" @click.native="isShow(showArr[1].show,1)">
        自定义文件夹1
      </el-card>
      <el-card class="info-card" shadow="always" @click.native="isShow(showArr[2].show,2)">
        自定义文件夹2
      </el-card>
      <el-card class="info-card" shadow="always" @click.native="isShow(showArr[3].show,3)">
        自定义文件夹3
      </el-card>
      <el-card class="info-card" shadow="always" @click.native="isShow(showArr[4].show,4)">
        自定义文件夹4
      </el-card>
    </el-aside>
    <el-main>
      <el-row>
        <el-col :span="16">
          <h3 class="bu-tian-jia-title">云盘智搜</h3>
        </el-col>
        <el-col :span="8">
          <el-input v-model="input" placeholder="请输入内容" style="width:200px" />
          <el-button type="primary">查询</el-button>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="30">
          <el-button type="danger">下载</el-button>
          <el-button type="primary">删除</el-button>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="30">
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称1.doc</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称2.txt</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称3.xls</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称4.ppt</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称1.doc</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称1.doc</dd>
          </dl>
          <dl>
            <dt><img src="../../../images/fujian.png"></dt>
            <dd><el-checkbox /> 附件名称1.doc</dd>
          </dl>
        </el-col>
      </el-row>
    </el-main>
  </el-container>
</template>
 
<script>
</script>
 
<style>
  dl{
    float: left;
    margin-right: 20px;
  }
  dd {
      margin-inline-start: 0px;
  }
</style>