本帖最后由 农启兵 于 2021-3-2 09:52 编辑
初始表单的时候默认显示20列,如果设置超出列,显示就会有问题:设置部分代码
sheet.setColumnCount(25);
//设置表头
titleArray.map((item, indexTitle) => {
sheet.setValue(0, indexTitle + 1, item.title+indexTitle);
d = new setProtected(sheet);
sheet = d.setStyle(0, indexTitle + 1);
sheet.setColumnWidth(indexTitle + 1, (item.width || 80))
});
最后显示
|
|