layui table中添加一列序号列
Posted ly426
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layui table中添加一列序号列相关的知识,希望对你有一定的参考价值。
页面文件在相应的位置上添加下面两个模块的代码:
第一模块:在render table 时添加:
{ field: ‘rank‘, title: ‘序号‘, width: 80, sort: true, fixed: ‘left‘, templet: ‘#rank‘ }
第二模块:在<script></script>一对标签外面添加:
<script type="text/html" id="rank">
{{d.LAY_TABLE_INDEX+1}}
</script>
注释:页面文件可以有多个<script></script>标签.
以上是关于layui table中添加一列序号列的主要内容,如果未能解决你的问题,请参考以下文章
layui的table渲染cols的标题错乱问题,number转成string