收敛历史导入文件前端只读展示

This commit is contained in:
wkc
2026-03-29 09:59:56 +08:00
parent f2cc9e2700
commit 0889ee4533
6 changed files with 53 additions and 8 deletions

View File

@@ -71,6 +71,14 @@
{{ scope.row.accountNos || '-' }}
</template>
</el-table-column>
<el-table-column prop="sourceProjectName" label="来源" min-width="180">
<template slot-scope="scope">
<span v-if="scope.row.sourceType === 'HISTORY_IMPORT'">
历史导入 · {{ scope.row.sourceProjectName || '-' }}
</span>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column prop="uploadTime" label="上传时间" width="180">
<template slot-scope="scope">
{{ formatUploadTime(scope.row.uploadTime) }}
@@ -820,7 +828,7 @@ export default {
},
getRowAction(row) {
return getUploadFileAction(row.fileStatus);
return getUploadFileAction(row);
},
handleRowAction(row) {