Browse Source

解决错误

pull/202/head
wangxy 2 years ago
parent
commit
5dfed37be9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/views/plan/workbench/homePage/formal/versions/index.vue

+ 2
- 2
src/views/plan/workbench/homePage/formal/versions/index.vue View File

@ -29,10 +29,10 @@
{{scope.row['VersionId']}}
</template>
</el-table-column>
<el-table-column v-for="item in headers"
<el-table-column v-for="(item, index) in headers"
:key="item"
:width="getRowWidth(item)" :label="item" min-width="150">
<template v-slot="{ row }">{{ (row.Item[index][item]) }}</template>
<template v-slot="{ row }">{{ (row.Item?.[index]?.[item]) }}</template>
</el-table-column>
</el-table>
</div>


Loading…
Cancel
Save