render: (createElement, params) => {
return createElement('div', [
// createElement('img', {
// class: '',
// style: 'width:15px;height:16px;',
// attrs: {
// src: CURRENT_PAGE_THIS.extractIcon
// }
// }),
createElement(
'td-button',
{
class: 'extract_btn',
style: 'width:30px;text-align: left;',
props: {
type: 'text',
size: 'small'
},
on: {
click: () => {
CURRENT_PAGE_THIS.extract(params.row);
}
}
},
这是一个按钮
)]