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