Browse Source

修复设计器中斜表头手动调整坐标错位的问题

master
jacky6024 7 years ago
parent
commit
afea31d3ec
  1. 2
      ureport2-console/src/main/resources/ureport-asserts/js/designer.bundle.js
  2. 8
      ureport2-js/src/widget/CrossTabWidget.js

2
ureport2-console/src/main/resources/ureport-asserts/js/designer.bundle.js

File diff suppressed because one or more lines are too long

8
ureport2-js/src/widget/CrossTabWidget.js

@ -135,8 +135,12 @@ export default class CrossTabWidget{
};
}
doDraw(cellDef,rowIndex,colIndex){
this.rowIndex=rowIndex;
this.colIndex=colIndex;
if(rowIndex!=null && rowIndex!=undefined){
this.rowIndex=rowIndex;
}
if(colIndex!=null && colIndex!=undefined){
this.colIndex=colIndex;
}
const slashValue=cellDef.value;
const cellStyle=cellDef.cellStyle;
if(!cellStyle.forecolor){

Loading…
Cancel
Save