1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| //表格初始化 table.render({ elem: '#lay-index-list'//绑定表格id , url: '/abcefg' //表格接口 , method: 'post' //请求方式 , toolbar: '#toolbarindex' //自定义工具栏 , defaultToolbar: [] , title: '数据表' , totalRow: false , where: { //查询参数 "name1": '12', "name2": '34' } , cols: [[ {type: 'checkbox', fixed: 'left'} , {field: 'kpiName', title: '指标名称', width: 260} , { field: 'kpiCode', title: '指标编码', width: 180, templet: function (res) { return '<em>' + res.kpiCode + '</em>' } } , {field: 'kpiDevType', title: '设备类型', width: 100} , {field: 'kpiUnits', title: '指标单位', width: 100} , { field: 'kpiLevel', title: '指标级别', width: 100, templet: function (res) { if (res.kpiLevel === "2") { return '网元'} else if (res.kpiLevel === "3") { return '板卡'} else if (res.kpiLevel === "4") { return '端口'}}} , {field: 'kpiDesc', title: '描述', width: 150} , {fixed: 'right', title: '操作', toolbar: '#table-tool-list', width: 150} //绑定操作 ]] , page: true , limit: 10 , limits: [10, 20, 50] });
|