|
@@ -175,17 +175,17 @@
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
<template #sign="scope">
|
|
<template #sign="scope">
|
|
|
- <template v-if="parseSignFiles(scope.row.checkedPersonSign || scope.row.signFile).length">
|
|
|
|
|
|
|
+ <template v-if="JSON.parse(scope.row.checkedPersonSign || '[]').length">
|
|
|
<div
|
|
<div
|
|
|
class="file-container--div"
|
|
class="file-container--div"
|
|
|
- v-for="item in parseSignFiles(scope.row.checkedPersonSign || scope.row.signFile)"
|
|
|
|
|
|
|
+ v-for="item in JSON.parse(scope.row.checkedPersonSign || '[]')"
|
|
|
:key="item.fileUrl || item.fileName"
|
|
:key="item.fileUrl || item.fileName"
|
|
|
>
|
|
>
|
|
|
- <img
|
|
|
|
|
|
|
+ <!-- <img
|
|
|
class="file-container--div__icon"
|
|
class="file-container--div__icon"
|
|
|
:src="FILE_TYPE_ICON[item.fileType as keyof typeof FILE_TYPE_ICON]"
|
|
:src="FILE_TYPE_ICON[item.fileType as keyof typeof FILE_TYPE_ICON]"
|
|
|
@click="previewOnline(item.fileUrl, item.fileType as keyof typeof FILE_TYPE_ICON)"
|
|
@click="previewOnline(item.fileUrl, item.fileType as keyof typeof FILE_TYPE_ICON)"
|
|
|
- />
|
|
|
|
|
|
|
+ /> -->
|
|
|
<span
|
|
<span
|
|
|
class="file-container--div__name"
|
|
class="file-container--div__name"
|
|
|
@click="previewOnline(item.fileUrl, item.fileType as keyof typeof FILE_TYPE_ICON)"
|
|
@click="previewOnline(item.fileUrl, item.fileType as keyof typeof FILE_TYPE_ICON)"
|