This commit is contained in:
parent
875fce3f94
commit
91c813e047
|
@ -117,13 +117,13 @@
|
|||
color: '#fff',
|
||||
}"
|
||||
>
|
||||
<template v-for="item in data.columns">
|
||||
<template v-for="item in tableType.columns">
|
||||
<el-table-column
|
||||
:key="item.label"
|
||||
v-if="item.type === 'slot'"
|
||||
:show-overflow-tooltip="true"
|
||||
:key="item.label"
|
||||
:label="item.label"
|
||||
:property="item.property"
|
||||
:show-overflow-tooltip="true"
|
||||
:align="item.align || 'center'"
|
||||
>
|
||||
<template #default="scope">
|
||||
|
@ -136,8 +136,8 @@
|
|||
</el-table-column>
|
||||
<el-table-column
|
||||
v-else
|
||||
:property="item.property"
|
||||
:label="item.label"
|
||||
:property="item.property"
|
||||
:show-overflow-tooltip="true"
|
||||
:align="item.align || 'center'"
|
||||
/>
|
||||
|
@ -488,6 +488,7 @@ const columnsList = reactive({
|
|||
{
|
||||
label: "养老金发放金额",
|
||||
property: "yljffje",
|
||||
type: "slot",
|
||||
},
|
||||
{
|
||||
label: "养老金发放日期",
|
||||
|
@ -496,7 +497,6 @@ const columnsList = reactive({
|
|||
{
|
||||
label: "养老金类型",
|
||||
property: "yljlx",
|
||||
type: "slot",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue