console
document.querySelector('#table-demo-fixedCode').GM({
gridManagerName: 'demo-fixedCode',
ajaxData: 'https://www.lovejavascript.com/learnLinkManager/getLearnLinkList',
ajaxType: 'POST',
supportAjaxPage: true,
supportAdjust: true,
supportDrag: true,
checkboxConfig: {
fixed: 'left'
},
autoOrderConfig: {
fixed: 'left'
},
columnData: [
{
key: 'name',
text: '名称',
width: '200px'
},{
key: 'info',
text: '说明',
width: '500px'
},{
key: 'url',
text: 'url',
width: '500px'
},{
key: 'action',
text: '操作',
width: '100px',
fixed: 'right',
template: (action, row) => {
return '<a href="' + row.url + '" target="_blank">查 看</a>';
}
}
]
});
<div style="min-width:800px">
<table id='table-demo-fixedCode'></table>
</div>