123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <template>
- <div>
- <el-collapse v-model="activeNames" @change="handleChange">
- <div v-if="isList">
- <el-collapse-item name="folder">
- <template #title>
- <span class="collapseItem_title">文件夹</span>
- </template>
- <!-- 表格 -->
- <el-table
- :data="tableData"
- style="width: 100%"
- height="250"
- :scrollbar-always-on="true"
- >
- <el-table-column fixed prop="date" label="名称" width="500">
- <template #default="scope">
- <div>
- <img
- class="table_icon"
- src="../../../assets/images/fileBox.png"
- alt=""
- style=""
- />
- {{ scope.row.date }}
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="时间" width="200" />
- <el-table-column prop="state" label="类型" width="180" />
- <el-table-column prop="city" label="大小" width="160" />
- </el-table>
- </el-collapse-item>
- <el-collapse-item name="file">
- <template #title>
- <span class="collapseItem_title">文件</span>
- </template>
- <!-- 表格 -->
- <el-table
- :data="tableData"
- style="width: 100%"
- height="250"
- :scrollbar-always-on="true"
- >
- <el-table-column fixed prop="date" label="名称" width="500">
- <template #default="scope">
- <div>
- <img
- class="table_icon"
- src="../../../assets/images/fileBox.png"
- alt=""
- style=""
- />
- {{ scope.row.date }}
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="时间" width="200" />
- <el-table-column prop="state" label="类型" width="180" />
- <el-table-column prop="city" label="大小" width="160" />
- </el-table>
- </el-collapse-item>
- </div>
- <div v-else>
- <el-collapse-item name="folder">
- <template #title>
- <span class="collapseItem_title">文件夹</span>
- </template>
- <!-- 平铺 -->
- <el-scrollbar height="360px">
- <div class="tile_box">
- <div class="file_box" v-for="item in 20" :key="item">
- <img
- class="big_file_img"
- src="../../../assets/images/fileBox.png"
- alt=""
- />
- <span>Inceptos</span>
- </div>
- </div>
- </el-scrollbar>
- </el-collapse-item>
- <el-collapse-item name="file">
- <template #title>
- <span class="collapseItem_title">文件</span>
- </template>
- <!-- 平铺 -->
- <el-scrollbar height="360px">
- <div class="tile_box">
- <div class="file_box" v-for="item in 20" :key="item">
- <img
- class="big_file_img"
- src="../../../assets/images/fileType//file/DOC.png"
- alt=""
- />
- <span>Inceptos</span>
- </div>
- </div>
- </el-scrollbar>
- </el-collapse-item>
- </div>
- </el-collapse>
- </div>
- </template>
- <script setup>
- import { onMounted, ref } from "vue";
- import { listRecent } from "../../../api/biz/recent";
- const activeNames = ref(["folder", "file"]);
- const isList = ref(false); //控制显示方式
- onMounted(() => {
- getList();
- });
- const getList = async () => {
- const res = await listRecent();
- console.log("res = ", res);
- };
- const handleChange = (val) => {
- // console.log(val);
- };
- const tableData = [
- {
- date: "2016-05-03",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-02",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-04",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-01",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-08",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-06",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- {
- date: "2016-05-07",
- name: "Tom",
- state: "California",
- city: "Los Angeles",
- address: "No. 189, Grove St, Los Angeles",
- zip: "CA 90036",
- },
- ];
- </script>
- <style lang="scss" scoped>
- .table_icon {
- height: 27px;
- width: 27px;
- vertical-align: middle;
- }
- ::v-deep .el-collapse-item__content {
- padding-bottom: 0;
- }
- ::v-deep .el-collapse-item__header {
- background-color: #ebeff6 !important;
- width: 100% !important;
- height: 24px !important;
- }
- ::v-deep .el-collapse-item__arrow {
- position: relative;
- color: #2e6bc8;
- right: 97%;
- }
- ::v-deep .el-table td.el-table__cell {
- border: none;
- font-size: 14px !important;
- font-weight: 400 !important;
- color: #000 !important;
- }
- ::v-deep .el-table__row {
- height: 35px !important;
- }
- ::v-deep .el-table .el-table__header-wrapper th {
- border-bottom: none;
- border-right: 1px solid #c1cce3;
- background-color: #fff !important;
- color: #505870;
- font-size: 14px;
- }
- .collapseItem_title {
- position: relative;
- left: 40px;
- color: #2e6bc8;
- font-family: Inter-Medium;
- font-size: 12px;
- }
- // 表格右边3个靠右对齐
- ::v-deep .el-table__header thead tr th {
- font-family: Inter-Medium;
- font-size: 14px;
- color: #505870;
- text-align: right;
- &:nth-child(1) {
- text-align: left;
- }
- }
- // ::v-deep .el-table__body tbody [class*="column_2"] {
- // text-align: right;
- // }
- // ::v-deep .el-table__body tbody [class*="column_3"] {
- // text-align: right;
- // }
- // ::v-deep .el-table__body tbody [class*="column_4"] {
- // text-align: right;
- // }
- // ::v-deep .el-table__body tbody [class*="column_6"] {
- // text-align: right;
- // }
- // ::v-deep .el-table__body tbody [class*="column_7"] {
- // text-align: right;
- // }
- // ::v-deep .el-table__body tbody [class*="column_8"] {
- // text-align: right;
- // }
- ::v-deep .el-table__body tbody [class*="column_"] {
- text-align: right;
- &:nth-child(4n+1){
- text-align: left;
- }
- }
- //平铺
- .tile_box {
- width: 100%;
- height: 300px;
- display: flex;
- flex-wrap: wrap;
- .file_box {
- width: 116px;
- min-height: 138px;
- // border: 1px solid #000;
- display: flex;
- flex-direction: column;
- align-items: center;
- .big_file_img {
- width: 100px;
- height: 100px;
- }
- span {
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- }
- }
- }
- </style>
|