ascii时序号问题

This commit is contained in:
huayj 2019-08-28 11:14:21 +08:00
parent 5073e7f5fd
commit b6c43b0414
1 changed files with 1 additions and 1 deletions

View File

@ -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:{