ascii时序号问题
This commit is contained in:
parent
5073e7f5fd
commit
b6c43b0414
|
@ -45,7 +45,7 @@ export default class ColumnManager {
|
|||
render:(text, record, index)=>{
|
||||
switch( type ){
|
||||
case 'ascii':{
|
||||
return (String.fromCharCode((base || 'a').charCodeAt()) + index);
|
||||
return (String.fromCharCode((base || 'a').charCodeAt() + index));
|
||||
}
|
||||
case 'number':
|
||||
default:{
|
||||
|
|
Loading…
Reference in New Issue