{
title: '操作',
key: 'action',
fixed: 'right',
width: 150,
render: (h, params) => {
//params.row.credit_sernos判断没一行是否返回数据(一般都是后台返的json数据)返回数据,就执行返回按钮,没有就显示空。
return h('div', [
h('Button', {
props: {
type: 'primary',
size: 'small'
},
style: {
marginRight: '5px'
},
on: {
click: () => {
this.lookProject(params.row)
}
}
}, '查看项目'),
h('Button', {
props: {
type: 'primary',
size: 'small'
},
style: {
marginRight: '5px'
},
on: {
click: () => {
this.del(params.row, params.index)
}
}
}, '删除')
]);
}
网友评论