|
@@ -9,12 +9,12 @@
|
|
|
<div
|
|
<div
|
|
|
v-if="header.label === '操作'"
|
|
v-if="header.label === '操作'"
|
|
|
class="padding-top padding-bottom"
|
|
class="padding-top padding-bottom"
|
|
|
- style="width: 315px"
|
|
|
|
|
|
|
+ style="width: 285px"
|
|
|
>
|
|
>
|
|
|
{{ header.label }}
|
|
{{ header.label }}
|
|
|
</div>
|
|
</div>
|
|
|
<div
|
|
<div
|
|
|
- v-else
|
|
|
|
|
|
|
+ v-else-if="index === 0"
|
|
|
class="menu flex flex-center flex-justify-start"
|
|
class="menu flex flex-center flex-justify-start"
|
|
|
:style="header.width ? `width:` + header.width + `px` : ''"
|
|
:style="header.width ? `width:` + header.width + `px` : ''"
|
|
|
>
|
|
>
|
|
@@ -28,6 +28,11 @@
|
|
|
{{ header.label }}
|
|
{{ header.label }}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div v-else>
|
|
|
|
|
+ <div class="ml-10">
|
|
|
|
|
+ {{ header.label }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="full-width">
|
|
<div class="full-width">
|
|
@@ -84,7 +89,7 @@
|
|
|
class="row full-width"
|
|
class="row full-width"
|
|
|
:style="`min-width:` + prop.width + `px`"
|
|
:style="`min-width:` + prop.width + `px`"
|
|
|
>
|
|
>
|
|
|
- <div class="cell flex flex-center full-width">
|
|
|
|
|
|
|
+ <div class="cell flex full-width flex-center">
|
|
|
<row1
|
|
<row1
|
|
|
:row="row"
|
|
:row="row"
|
|
|
:column="prop"
|
|
:column="prop"
|
|
@@ -100,12 +105,19 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="full-width flex flex-center flex-justify-between">
|
|
<div class="full-width flex flex-center flex-justify-between">
|
|
|
<div class="mt-10">
|
|
<div class="mt-10">
|
|
|
- <div class="ml-20" v-if="topFolder === false">
|
|
|
|
|
- 共 {{ filesInfo.folderAmount }} 个文件夹,
|
|
|
|
|
- {{ filesInfo.amount }} 个文件,文件总大小:{{
|
|
|
|
|
|
|
+ <div class="ml-20 bold" v-if="topFolder === false">
|
|
|
|
|
+ 共
|
|
|
|
|
+ <span class="main-color font-15"
|
|
|
|
|
+ >{{ filesInfo.folderAmount }}
|
|
|
|
|
+ </span>
|
|
|
|
|
+ 个文件夹,
|
|
|
|
|
+ <span class="main-color font-15">{{ filesInfo.amount }}</span>
|
|
|
|
|
+ 个文件,文件总大小:<span class="main-color font-15">{{
|
|
|
filesInfo.volume
|
|
filesInfo.volume
|
|
|
- }}
|
|
|
|
|
- ,预估共计 {{ filesInfo.totalPage }}页
|
|
|
|
|
|
|
+ }}</span>
|
|
|
|
|
+ ,预估共计
|
|
|
|
|
+ <span class="font-15 main-color"> {{ filesInfo.totalPage }}</span>
|
|
|
|
|
+ 页
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<el-pagination
|
|
<el-pagination
|
|
@@ -133,6 +145,7 @@ import preview from '@/views/resource/component/preview.vue'
|
|
|
import defile from '@/views/resource/component/defile.vue'
|
|
import defile from '@/views/resource/component/defile.vue'
|
|
|
import apply from '@/views/resource/component/apply.vue'
|
|
import apply from '@/views/resource/component/apply.vue'
|
|
|
import { bytesToSize } from '@/utils/tools.js'
|
|
import { bytesToSize } from '@/utils/tools.js'
|
|
|
|
|
+
|
|
|
export default {
|
|
export default {
|
|
|
components: {
|
|
components: {
|
|
|
row1,
|
|
row1,
|