|
|
|
@ -85,7 +85,7 @@
|
|
|
|
<el-table-column show-overflow-tooltip align="center" min-width="120" prop="guaranteeMoney" label="保证金" sortable></el-table-column>
|
|
|
|
<el-table-column show-overflow-tooltip align="center" min-width="120" prop="guaranteeMoney" label="保证金" sortable></el-table-column>
|
|
|
|
<el-table-column show-overflow-tooltip align="center" min-width="80" prop="imageUrl" label="活动图片">
|
|
|
|
<el-table-column show-overflow-tooltip align="center" min-width="80" prop="imageUrl" label="活动图片">
|
|
|
|
<template #default="{row}">
|
|
|
|
<template #default="{row}">
|
|
|
|
<el-image style="width: 30px; height: 30px" :src="imgPath+row.fileLists[0].filePath+'/'+row.fileLists[0].fileName" :preview-src-list="[imgPath+row.fileLists[0].filePath+'/'+row.fileLists[0].fileName]">
|
|
|
|
<el-image style="width: 30px; height: 30px" :src="row.imgPath" :preview-src-list="[row.imgPath]">
|
|
|
|
</el-image>
|
|
|
|
</el-image>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
@ -174,6 +174,13 @@ export default {
|
|
|
|
let { code, pageInfo } = await getList(this.queryForm);
|
|
|
|
let { code, pageInfo } = await getList(this.queryForm);
|
|
|
|
this.listLoading = false;
|
|
|
|
this.listLoading = false;
|
|
|
|
if (code == "000000") {
|
|
|
|
if (code == "000000") {
|
|
|
|
|
|
|
|
pageInfo.list.forEach(function (item) {
|
|
|
|
|
|
|
|
item.forEach(function (items) {
|
|
|
|
|
|
|
|
if (items.docType == 'platform_coupon_huizhi') {
|
|
|
|
|
|
|
|
item.imgPath = partten.imagePath + items.filePath + '/' + items.fileName
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
this.list = Array.from(pageInfo.list);
|
|
|
|
this.list = Array.from(pageInfo.list);
|
|
|
|
this.total = pageInfo.total;
|
|
|
|
this.total = pageInfo.total;
|
|
|
|
this.queryForm.pageNum = pageInfo.pageNum;
|
|
|
|
this.queryForm.pageNum = pageInfo.pageNum;
|
|
|
|
|