|
|
@@ -48,15 +48,36 @@
|
|
|
>文件历史
|
|
|
</el-button>
|
|
|
<el-drawer v-model="liShow" :size="600">
|
|
|
- <div
|
|
|
- class="flex ml-10"
|
|
|
+ <template #title>
|
|
|
+ <h3
|
|
|
+ class="ml-5 black flex flex-center flex-justify-start full-width font-14 bold"
|
|
|
+ >
|
|
|
+ 提交历史
|
|
|
+ </h3>
|
|
|
+ </template>
|
|
|
+ <div class="ml-20">
|
|
|
+ <el-icon class="mr-5" color="#5acafa"> <WarningFilled /> </el-icon
|
|
|
+ >点击对应记录,可以查看历史文件
|
|
|
+ </div>
|
|
|
+ <a
|
|
|
+ style="
|
|
|
+ background: #e5e3e3;
|
|
|
+ margin-top: 5px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ margin-right: 20px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ padding-left: 5px;
|
|
|
+ "
|
|
|
+ class="flex ml-20"
|
|
|
v-for="item in fileHistoryList"
|
|
|
@click="newDetail(item)"
|
|
|
>
|
|
|
- <div class="mt-10">{{ item.coverUser }}</div>
|
|
|
+ <div class="mt-10">
|
|
|
+ {{ item.coverUser }}
|
|
|
+ </div>
|
|
|
<div class="ml-20 mt-10">在{{ item.createTime }}上传,</div>
|
|
|
- <div class="ml-20 mt-10">编码{{ item.fileVO.md5 }}</div>
|
|
|
- </div>
|
|
|
+ <div class="ml-20 mt-10">编码:{{ item.fileVO.md5 }}</div>
|
|
|
+ </a>
|
|
|
</el-drawer>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -140,7 +161,6 @@ export default {
|
|
|
.fileHistory({ fileId: this.fileId, current: 1, size: 100 })
|
|
|
.then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- console.log(res)
|
|
|
if (res.data.total > 0) {
|
|
|
this.liButton = true
|
|
|
this.fileHistoryList = res.data.records
|