|
@@ -1909,7 +1909,7 @@ $(document).ready(function() {
|
|
|
};
|
|
|
for (let iNum = 1; iNum <= this.billsCount; iNum++) {
|
|
|
this.posSpreadSetting.cols.push(
|
|
|
- {title: '清单' + iNum, field: 'bills' + iNum, hAlign: 2, width: 50}
|
|
|
+ {title: '节点' + iNum, field: 'bills' + iNum, hAlign: 2, width: 50}
|
|
|
)
|
|
|
}
|
|
|
this.posSpread = SpreadJsObj.createNewSpread($('.batch-l-b', this.obj)[0]);
|
|
@@ -2042,7 +2042,7 @@ $(document).ready(function() {
|
|
|
SpreadJsObj.beginMassOperation(qdSheet);
|
|
|
qdSheet.clear(0, 0, qdSheet.getRowCount(), qdSheet.getColumnCount(), GC.Spread.Sheets.SheetArea.viewport, GC.Spread.Sheets.StorageType.data);
|
|
|
for (let iRow = 1; iRow <= this.billsCount; iRow++) {
|
|
|
- qdSheet.getCell(iRow - 1, 0, GC.Spread.Sheets.SheetArea.rowHeader).text('清单' + iRow);
|
|
|
+ qdSheet.getCell(iRow - 1, 0, GC.Spread.Sheets.SheetArea.rowHeader).text('节点' + iRow);
|
|
|
}
|
|
|
qdSheet.setSelection(0, 0, 1 ,1);
|
|
|
SpreadJsObj.endMassOperation(qdSheet);
|