|
@@ -19,7 +19,7 @@
|
|
|
<el-table-column prop="name" label="名称" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope" v-if="scope.row.reportFiles">
|
|
|
<div>
|
|
|
- <span>{{scope.row.reportFiles[0].name}}</span>
|
|
|
+ <span>{{scope.row.name}}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -175,7 +175,7 @@ export default {
|
|
|
handleEdit(row) {
|
|
|
this.title = '编辑'
|
|
|
if(row.reportFiles){
|
|
|
- row.name = row.reportFiles[0].name
|
|
|
+ // row.name = row.reportFiles[0].name
|
|
|
}else{
|
|
|
row.name = ''
|
|
|
}
|