档案目录修改

master
wanglei 1 year ago
parent 2f44ffa5a6
commit 8bc2f919c0

@ -220,6 +220,7 @@
<!-- 查看历史上传记录 --> <!-- 查看历史上传记录 -->
<el-dialog :title="lssc.title" :visible.sync="lssc.open" width="800px" append-to-body top="6vh"> <el-dialog :title="lssc.title" :visible.sync="lssc.open" width="800px" append-to-body top="6vh">
<div style="text-align: right; padding-right: 20px; font-size: 18px">共计 {{ lssc.total }}</div>
<div> <div>
<el-image <el-image
v-for="item in lssc.list" v-for="item in lssc.list"
@ -304,7 +305,8 @@ export default {
title:"历史上传记录", title:"历史上传记录",
open: false, open: false,
list: [], list: [],
previewList: [] previewList: [],
total: 0
} }
}; };
}, },
@ -523,7 +525,8 @@ export default {
this.lssc.open = true; this.lssc.open = true;
listPictureRecard({muId: row.id,pageSize: 1000000000}).then(response => { listPictureRecard({muId: row.id,pageSize: 1000000000}).then(response => {
this.lssc.list = response.rows; this.lssc.list = response.rows;
this.lssc.previewList = [] this.lssc.total = response.total;
this.lssc.previewList = [];
this.lssc.list.forEach(item=>{ this.lssc.list.forEach(item=>{
this.lssc.previewList.push(item.picUrl) this.lssc.previewList.push(item.picUrl)

Loading…
Cancel
Save