收敛历史导入文件前端只读展示
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user