mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
feat: add support for scopedSlots in StandardTable.vue; 🌟
新增:StandardTable.vue 组件增加 scopedSlots 的支持;
This commit is contained in:
parent
687a3adc37
commit
e6fb49260d
@ -25,6 +25,9 @@
|
|||||||
:pagination="pagination"
|
:pagination="pagination"
|
||||||
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: updateSelect}"
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: updateSelect}"
|
||||||
>
|
>
|
||||||
|
<template slot-scope="text, record, index" :slot="slot" v-for="slot in scopedSlots">
|
||||||
|
<slot :name="slot" v-bind="{text, record, index}"></slot>
|
||||||
|
</template>
|
||||||
</a-table>
|
</a-table>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -36,7 +39,8 @@ export default {
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
needTotalList: [],
|
needTotalList: [],
|
||||||
selectedRowKeys: []
|
selectedRowKeys: [],
|
||||||
|
scopedSlots: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -61,9 +65,14 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
return totalList
|
return totalList
|
||||||
|
},
|
||||||
|
getScopedSlots(columns) {
|
||||||
|
return columns.filter(item => item.scopedSlots && item.scopedSlots.customRender)
|
||||||
|
.map(item => item.scopedSlots.customRender)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
this.scopedSlots = this.getScopedSlots(this.columns)
|
||||||
this.needTotalList = this.initTotalList(this.columns)
|
this.needTotalList = this.initTotalList(this.columns)
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -97,7 +97,14 @@
|
|||||||
:dataSource="dataSource"
|
:dataSource="dataSource"
|
||||||
:selectedRows="selectedRows"
|
:selectedRows="selectedRows"
|
||||||
@change="onchange"
|
@change="onchange"
|
||||||
/>
|
>
|
||||||
|
<div slot="description" slot-scope="{text}">
|
||||||
|
{{text}}
|
||||||
|
</div>
|
||||||
|
<div slot="action" slot-scope="{text, record, index}">
|
||||||
|
<a-icon type="edit" />{{index}}
|
||||||
|
</div>
|
||||||
|
</standard-table>
|
||||||
</div>
|
</div>
|
||||||
</a-card>
|
</a-card>
|
||||||
</template>
|
</template>
|
||||||
@ -111,7 +118,8 @@ const columns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '描述',
|
title: '描述',
|
||||||
dataIndex: 'description'
|
dataIndex: 'description',
|
||||||
|
scopedSlots: { customRender: 'description' }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '服务调用次数',
|
title: '服务调用次数',
|
||||||
@ -129,6 +137,10 @@ const columns = [
|
|||||||
title: '更新时间',
|
title: '更新时间',
|
||||||
dataIndex: 'updatedAt',
|
dataIndex: 'updatedAt',
|
||||||
sorter: true
|
sorter: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '操作',
|
||||||
|
scopedSlots: { customRender: 'action' }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user