layui点击table中的某一列跳转到新页面
{rowspan: 2,colspan: 1,field: 'gridAbbr', title: '简称', fixed: 'left', align: 'center', width:60,
templet:function (d) {
return '<a href="#/report/wgfz/no='+d.gridNo+'/name='+d.gridName+'/date='+$('#dayTime').val()+'">'+d.gridAbbr +'</a>'
}
}
1、带参跳转
2、新页面接收参数的方法
console.log(layui.router().search.name,decodeURI(layui.router().search.name))
console.log(layui.router().search.date,decodeURI(layui.router().search.date))
转编码格式