h('Button', {
props: {
type: 'warning',
size: 'small',
disabled: params.row.summary_status === 100
},
style: {
marginRight: '5px',
display: this.auditIsShow ? 'inline-block' : 'none'
},
on: {
click: () => {
this.handleExamine(params.row)
}
}
}, '审核'),