pdfmake不能设置表格边框颜色?

找到pdfmake>build>pdfmake.js中:

找到定义的“TableProcessor.prototype.drawVerticalLine”和“TableProcessor.prototype.drawHorizontalLine”两个方法:

重新定义borderColor:

var borderColor = this.tableNode.table.borderColor||"#DBDBDB";

前端数据中设置如下:

{
        table: {
                    headerRows: 1,
                    widths: [50, "*", 60, "*"],
                    borderColor:"#39f",//这样设置边框样式
                    body: [
                        [{ text: "服务监测报告",style:'header', colSpan: 4}, {}, {}, {}],
                        [{ text: "this.searchInformation.lysuoName", colSpan: 4, alignment: 'left',}, {}, {}, {}],
                        [
                        { text: "序号",  alignment: 'center', fillColor: '#91aadf' },
                        { text: "项目",  alignment: 'center', fillColor: '#91aadf' },
                        { text: "金额",  alignment: 'center', fillColor: '#91aadf' },
                        { text: "备注",  alignment: 'center', fillColor: '#91aadf' },
                        ],                    
                    ],
                }
        }

保存刷新即可

你可能感兴趣的:(javascript,前端,开发语言)