当前位置: 首页 > news >正文

长沙网站制作好公司宿州网站开发建设

长沙网站制作好公司,宿州网站开发建设,国内做网站需要做icp备案吗,中天建设第四网站本段是菜狗子的碎碎念#xff0c;解决办法请直接从第二段开始看。layui多级表头的导出#xff0c;弄了两天才搞定#xff0c;中途一度想放弃#xff0c;还好坚持下来了。一开始用的是layui的toolbar里自带的那个导出#xff0c;但是多级表头没有正常导出#xff0c;单元格…本段是菜狗子的碎碎念解决办法请直接从第二段开始看。layui多级表头的导出弄了两天才搞定中途一度想放弃还好坚持下来了。一开始用的是layui的toolbar里自带的那个导出但是多级表头没有正常导出单元格背景颜色也没有。后来分别用了sheetjs和table2excel导出的文件有大小但是用wps打不开或者打开空白或者报错Uncaught TypeError: Cannot read property length of undefined。最后用了excel.js或者叫layui-excel成功。导出样式如下 excel.js下载地址https://gitcode.com/gh_mirrors/la/layui-excel/overview?utm_sourcecsdn_github_acceleratorisLogin1 1. 添加引用 excel.js在layui-excel-master\layui_exts\中可以将文件夹layui_exts复制到工程代码的js\lay-module\中然后在js\lay-config.js中添加layui自定义扩展excel最后在html文件中引用。 window.rootPath (function(src) {src document.scripts[document.scripts.length - 1].src;return src.substring(0, src.lastIndexOf(/) 1); })();layui.config({base: rootPath lay-module/,version: true }).extend({excel: layui_exts/excel, // 后端接口封装 }); script src../../js/lay-config.js?v2.0.0 charsetutf-8/script 2. 做表 layui.use([form, table, myHttp,util, excel], function () {var $ layui.jquery,form layui.form,table layui.table,myHttp layui.myHttp,util layui.util,excel layui.excel;cxUrl myHttp.getDataList //此处获取表格展示的具体数据要替换成你自己的数据接口table.render({elem: #cxTable,url: cxUrl,toolbar: #cxDTableToolbar,defaultToolbar: [filter, exports, print],cols: [[{field: id,title: 设备编号,width: 100,fixed: left,rowspan: 2,sort: true},{field: address,title: 设备地址,width: 240,rowspan: 2,sort: true},{width: 120,title: 1号传感器,align: center,colspan: 2},{width: 120,title: 2号传感器,align: center,colspan: 2}],[{field: device1value,width: 90,title: 数值},{field: device1sts,width: 90,title: 状态,templet: function (d) {//根据传感器的状态设置背景颜色if (d.device1sts ! null d.device1sts ! 正常) {return div stylebackground-color: yellow; d.device1sts /div;} else {if (d.device1sts null) {d.device1sts ;}return d.device1sts;}}},{field: device2value,width: 90,title: 数值},{field: device2sts,width: 90,title: 状态,templet: function (d) {if (d.device2sts ! null d.device2sts ! 正常) {return div stylebackground-color: yellow; d.device2sts /div;} else {if (d.device2sts null) {d.device2sts ;}return d.device2sts;}}}]],limits: [10, 25, 50, 100],limit: 10,page: true,skin: line});});3.导出 参考了https://blog.csdn.net/qq_42455262/article/details/128049644中的function exportFile()部分我根据自己的情况在其中增加引用了excel.setExportCellStyle()作用是用黄色背景突出显示状态异常的器件如果不需要可以删掉。 !-- 添加导出按钮 -- button idexportButton导出表格/button // 点击导出按钮导出表格数据 $(#exportButton).click(function () {exportFile();});function exportFile() {var bodys $(div[classlayui-form layui-border-box layui-table-view] .layui-table-box table).get(1); // 获取数据var btrs Array.from(bodys.querySelectorAll(tr))var btdslength Array.from(btrs[0].querySelectorAll(td)).length;var headers $(div[classlayui-form layui-border-box layui-table-view] .layui-table-box table).get(0); // 获取表头var headerHead $(div[classlayui-form layui-border-box layui-table-view] .layui-table-box table thead).get(0); // 获取表头var htrs Array.from(headers.querySelectorAll(tr));var bodysArr new Array();var point new Array(); // 行列for (var pi 0; pi htrs.length 1; pi) {point[pi] new Array();}point[0][0] qd; // 起点var mergeArr [];for (var j 0; j htrs.length; j) { // 遍历trvar titles [];var hths Array.from(htrs[j].querySelectorAll(th));var titleAll {};var pointIndex 0;var pindx 0; // 起点遍历位置for (var i 0; i hths.length; i) { // 遍历 thvar clazz hths[i].getAttributeNode(class);var colspan hths[i].getAttributeNode(colspan); // 表头占用列数var rowspan hths[i].getAttributeNode(rowspan); //表头占用行数if (!colspan) {colspan 1;} else {colspan parseInt(colspan.value);}if (!rowspan) {rowspan 1;} else {rowspan parseInt(rowspan.value);}// 判断数据起始填写位置for (; pindx btdslength; pindx) {if (j 0 || point[j][pindx] qd) {titles.push(hths[i].innerText);for (var temp 0; temp colspan - 1; temp) {titles.push(null);}mergeArr.push({ s: { r: j, c: pindx }, e: { r: j rowspan - 1, c: pindx colspan - 1 } }); // 添加合并数据参数 r的差R表示向下扩展R个单元格,c 的差C表示想右扩展C个单元格for (var qdi 0; qdi colspan; qdi) {point[j rowspan][pindx qdi] qd; // 添加完数据 ,添加起点记录}pindx pindx colspan;break;} else {titles.push(); // 不能为null, 为null 会影响表格样式的设置}}}bodysArr.push(titles);}var widthArr []; //这里改宽for (var j 0; j btrs.length; j) {var contents [];var btds Array.from(btrs[j].querySelectorAll(td));for (var i 0; i btds.length; i) {contents.push(btds[i].innerText);if (j 0) { //只跑一圈widthArr.push({ wpx: btds[i].scrollWidth });}}bodysArr.push(contents)}//设置表格样式var styleStr {alignment: {vertical: center,horizontal: center},font: {sz: 14,// bold:true},border: {top: {style: thin},bottom: {style: thin},left: {style: thin},right: {style: thin}}}var datas [];for (var i 0; i bodysArr.length; i) {var map {};var thisData bodysArr[i];for (var n 0; n thisData.length; n) {var dataName data_ n;var das thisData[n];var styMap {};styMap[s] styleStr;styMap[v] das;map[dataName] styMap;}datas.push(map);}var excel layui.excel;// 开始填充单元格背景颜色// console.log(datas);excel.setExportCellStyle(datas, D1:Q300,{s: {fill: { bgColor: { indexed: 64 }, fgColor: { rgb: FFFF00 } },alignment: {horizontal: center,vertical: center}}}, function (cell, newCell, row, config, currentRow, currentCol, fieldKey) {// 回调参数cell:原有数据newCell:根据批量设置规则自动生成的样式row:所在行数据config:传入的配置,currentRow:当前行索引,currentCol:当前列索引fieldKey:当前字段索引// return ((currentRow currentCol) % 2 0) ? newCell : cell;// 隔行隔列上色// console.log(cell[v]);if(cell[v] 疑似故障 || cell[v] 超上限值){return newCell;}else{return cell;}})// console.log(data);// 结束填充单元格背景颜色var filename deviceSts.xlsx;// 第一行行高40其余行默认20var rowConf excel.makeRowConfig({1: 40}, 20)excel.exportExcel({sheet: datas}, filename, xlsx, {extend: {sheet: {!merges: mergeArr, !cols: widthArr, !rows: rowConf}}})} 点击导出按钮即可下载表格。到这里layui复杂表头的导出已经实现关于excel.js的详细使用可以参考https://excel.wj2015.com/_book/里面提供了功能演示和导出函数的使用介绍。 4.把导出函数添加到toolbar 这一步是为了美观把导出函数添加到表格的toolbar可以不做。下方代码片段中的exports对应的是默认导出菜单{title: 下载,layEvent: LAYTABLE_EXPORT2,icon: layui-icon-export}是新增的自定义导出菜单。 defaultToolbar: [filter, exports, print, // 此处的exports对应的是默认的导出方式{title: 下载,layEvent: LAYTABLE_EXPORT2,icon: layui-icon-export}, // 自定义导出函数接入{title: 提示,layEvent: LAYTABLE_TIPS,icon: layui-icon-tips}], // 监听添加操作自定义导出cxTable需要替换成你自己的table id table.on(toolbar(cxTable), function(obj) {if (obj.event LAYTABLE_EXPORT2) { // console.log(导出);exportFile();};}); 此时表格的右上角变成了5个菜单。如下图所示第2个是默认导出第4个是自定义导出可以分别导出对比一下导出效果。没什么问题的话可以删除第2个菜单即export只保留自定义导出菜单即可。 关于layui的更多教程可以参考 layui开始使用_layui开始使用文档_layer在线开始使用文档_layui教程官网
文章转载自:
http://www.morning.mjwnc.cn.gov.cn.mjwnc.cn
http://www.morning.mlyq.cn.gov.cn.mlyq.cn
http://www.morning.tntqr.cn.gov.cn.tntqr.cn
http://www.morning.trffl.cn.gov.cn.trffl.cn
http://www.morning.bswnf.cn.gov.cn.bswnf.cn
http://www.morning.srgyj.cn.gov.cn.srgyj.cn
http://www.morning.fnpmf.cn.gov.cn.fnpmf.cn
http://www.morning.hsxkq.cn.gov.cn.hsxkq.cn
http://www.morning.krhkb.cn.gov.cn.krhkb.cn
http://www.morning.llmhq.cn.gov.cn.llmhq.cn
http://www.morning.smdkk.cn.gov.cn.smdkk.cn
http://www.morning.mhbcy.cn.gov.cn.mhbcy.cn
http://www.morning.wjxtq.cn.gov.cn.wjxtq.cn
http://www.morning.mtjwp.cn.gov.cn.mtjwp.cn
http://www.morning.mjtft.cn.gov.cn.mjtft.cn
http://www.morning.gmmyn.cn.gov.cn.gmmyn.cn
http://www.morning.xhpnp.cn.gov.cn.xhpnp.cn
http://www.morning.xqffq.cn.gov.cn.xqffq.cn
http://www.morning.mkczm.cn.gov.cn.mkczm.cn
http://www.morning.rhjsx.cn.gov.cn.rhjsx.cn
http://www.morning.rnfwx.cn.gov.cn.rnfwx.cn
http://www.morning.ldcrh.cn.gov.cn.ldcrh.cn
http://www.morning.rgzc.cn.gov.cn.rgzc.cn
http://www.morning.sfswj.cn.gov.cn.sfswj.cn
http://www.morning.prjty.cn.gov.cn.prjty.cn
http://www.morning.mkfr.cn.gov.cn.mkfr.cn
http://www.morning.bkslb.cn.gov.cn.bkslb.cn
http://www.morning.lwwnq.cn.gov.cn.lwwnq.cn
http://www.morning.cyyhy.cn.gov.cn.cyyhy.cn
http://www.morning.fprll.cn.gov.cn.fprll.cn
http://www.morning.kbynw.cn.gov.cn.kbynw.cn
http://www.morning.zkpwk.cn.gov.cn.zkpwk.cn
http://www.morning.rwdbz.cn.gov.cn.rwdbz.cn
http://www.morning.hqwtm.cn.gov.cn.hqwtm.cn
http://www.morning.chmkt.cn.gov.cn.chmkt.cn
http://www.morning.wgdnd.cn.gov.cn.wgdnd.cn
http://www.morning.wbnsf.cn.gov.cn.wbnsf.cn
http://www.morning.thpns.cn.gov.cn.thpns.cn
http://www.morning.mmxt.cn.gov.cn.mmxt.cn
http://www.morning.pmptm.cn.gov.cn.pmptm.cn
http://www.morning.sbrrf.cn.gov.cn.sbrrf.cn
http://www.morning.qbwtb.cn.gov.cn.qbwtb.cn
http://www.morning.ccsdx.cn.gov.cn.ccsdx.cn
http://www.morning.wkknm.cn.gov.cn.wkknm.cn
http://www.morning.xnqwk.cn.gov.cn.xnqwk.cn
http://www.morning.lnrr.cn.gov.cn.lnrr.cn
http://www.morning.jfcbz.cn.gov.cn.jfcbz.cn
http://www.morning.sgnxl.cn.gov.cn.sgnxl.cn
http://www.morning.vjwkb.cn.gov.cn.vjwkb.cn
http://www.morning.cpfx.cn.gov.cn.cpfx.cn
http://www.morning.jfnlj.cn.gov.cn.jfnlj.cn
http://www.morning.ggjlm.cn.gov.cn.ggjlm.cn
http://www.morning.ykrkq.cn.gov.cn.ykrkq.cn
http://www.morning.rftk.cn.gov.cn.rftk.cn
http://www.morning.wfbnp.cn.gov.cn.wfbnp.cn
http://www.morning.lqjlg.cn.gov.cn.lqjlg.cn
http://www.morning.hhxpl.cn.gov.cn.hhxpl.cn
http://www.morning.trsfm.cn.gov.cn.trsfm.cn
http://www.morning.hmwjk.cn.gov.cn.hmwjk.cn
http://www.morning.xgkxy.cn.gov.cn.xgkxy.cn
http://www.morning.kztts.cn.gov.cn.kztts.cn
http://www.morning.sdamsm.com.gov.cn.sdamsm.com
http://www.morning.qngcq.cn.gov.cn.qngcq.cn
http://www.morning.bmncq.cn.gov.cn.bmncq.cn
http://www.morning.thmlt.cn.gov.cn.thmlt.cn
http://www.morning.rjnm.cn.gov.cn.rjnm.cn
http://www.morning.lhqw.cn.gov.cn.lhqw.cn
http://www.morning.wcyr.cn.gov.cn.wcyr.cn
http://www.morning.baguiwei.com.gov.cn.baguiwei.com
http://www.morning.qlsbz.cn.gov.cn.qlsbz.cn
http://www.morning.mkkcr.cn.gov.cn.mkkcr.cn
http://www.morning.oumong.com.gov.cn.oumong.com
http://www.morning.fpyll.cn.gov.cn.fpyll.cn
http://www.morning.kndt.cn.gov.cn.kndt.cn
http://www.morning.mzjbz.cn.gov.cn.mzjbz.cn
http://www.morning.bpmnc.cn.gov.cn.bpmnc.cn
http://www.morning.kabaifu.com.gov.cn.kabaifu.com
http://www.morning.zlkps.cn.gov.cn.zlkps.cn
http://www.morning.brmbm.cn.gov.cn.brmbm.cn
http://www.morning.gyqnp.cn.gov.cn.gyqnp.cn
http://www.tj-hxxt.cn/news/267826.html

相关文章:

  • 深圳住房和城乡建设局网站如何用 ftp上传网站
  • 青岛高端网站制作建设化工网站的目的
  • 洛江区住房和城乡建设局网站seo关键词优化公司推荐
  • 做网站要搭建本地服务器么国外营销型网站
  • 怎么做企业网站建设东莞seo建站投放
  • 专业网站推广服务咨询首页排名优化公司
  • 南宁网站建设优化排名wordpress 导航图片
  • 微博优惠券网站怎么做台州本地做网站的
  • 网站制作学费多少钱WordPress批量建站系统
  • 网站建设服务采购方案建立网站的英文短语
  • 网站建议公司开发网址需要多少钱
  • 商城网页设计网站过度优化
  • 西安做网站好的公司app 微信 网站三合一
  • 安徽合肥做网站建筑设计公司网站模板
  • 单页网站产品互联网行业发展现状
  • 镜子厂家东莞网站建设做旅游网站的好处
  • 商田科技网站建设部网站1667号下载
  • 大型网站建设机构哪家好美工自学网
  • 烟台网站建设 熊掌号做新媒体国外网站
  • 舞蹈培训机构网站模板泰安市人才网官网
  • 在线做任务的网站if设计奖官网
  • 东城企业网站开发h5小程序制作平台
  • 快递公司网站源码手机网站开发开发
  • 常德做网站建设的公司wordpress博客建设与经营
  • 找工作求职百度网站优化排名
  • 北京网站建设 专业10年为什么做网站ppt
  • 互联网公司 哪个部门负责网站建设济南突然宣布
  • 怎么查网站空间怎样快速建设网站模板
  • 兰州网站建设运营方案河南做网站的公司有哪些
  • 天津网站建设费用wordpress 定制 价钱