|
@@ -1,18 +1,23 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="flex flex-center flex-justify-start">
|
|
|
|
|
- <el-button text type="primary" size="mini" @click="goBefore"
|
|
|
|
|
- >返回上一层
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-divider direction="vertical" border-style="dashed" />
|
|
|
|
|
- <el-button text type="primary" size="mini" @click="goHome"
|
|
|
|
|
- >全部文件
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <div v-if="data" class="flex flex-center">
|
|
|
|
|
- <el-icon>
|
|
|
|
|
- <ArrowRight />
|
|
|
|
|
- </el-icon>
|
|
|
|
|
- <el-button text type="primary" size="mini">{{ data.title }}</el-button>
|
|
|
|
|
|
|
+ <div class="flex flex-center flex-justify-between">
|
|
|
|
|
+ <div class="flex flex-center flex-justify-start">
|
|
|
|
|
+ <el-button text type="primary" size="mini" @click="goBefore"
|
|
|
|
|
+ >返回上一层
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-divider direction="vertical" border-style="dashed" />
|
|
|
|
|
+ <el-button text type="primary" size="mini" @click="goHome"
|
|
|
|
|
+ >全部文件
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <div v-if="data" class="flex flex-center">
|
|
|
|
|
+ <el-icon>
|
|
|
|
|
+ <ArrowRight />
|
|
|
|
|
+ </el-icon>
|
|
|
|
|
+ <el-button v-if="refreshBtn" text type="primary" size="mini">{{
|
|
|
|
|
+ data.title
|
|
|
|
|
+ }}</el-button>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <el-button icon="Refresh" circle />
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -24,6 +29,10 @@ export default {
|
|
|
default: {
|
|
default: {
|
|
|
title: ''
|
|
title: ''
|
|
|
}
|
|
}
|
|
|
|
|
+ },
|
|
|
|
|
+ refreshBtn: {
|
|
|
|
|
+ type: Boolean,
|
|
|
|
|
+ default: false
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|