|
|
|
|
@ -220,6 +220,7 @@
|
|
|
|
|
|
|
|
|
|
<!-- 查看历史上传记录 -->
|
|
|
|
|
<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>
|
|
|
|
|
<el-image
|
|
|
|
|
v-for="item in lssc.list"
|
|
|
|
|
@ -304,7 +305,8 @@ export default {
|
|
|
|
|
title:"历史上传记录",
|
|
|
|
|
open: false,
|
|
|
|
|
list: [],
|
|
|
|
|
previewList: []
|
|
|
|
|
previewList: [],
|
|
|
|
|
total: 0
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
@ -523,7 +525,8 @@ export default {
|
|
|
|
|
this.lssc.open = true;
|
|
|
|
|
listPictureRecard({muId: row.id,pageSize: 1000000000}).then(response => {
|
|
|
|
|
this.lssc.list = response.rows;
|
|
|
|
|
this.lssc.previewList = []
|
|
|
|
|
this.lssc.total = response.total;
|
|
|
|
|
this.lssc.previewList = [];
|
|
|
|
|
|
|
|
|
|
this.lssc.list.forEach(item=>{
|
|
|
|
|
this.lssc.previewList.push(item.picUrl)
|
|
|
|
|
|