美文网首页
react项目名中把后台传过来的数字用汉字表示

react项目名中把后台传过来的数字用汉字表示

作者: 莫失丿莫忘 | 来源:发表于2017-12-07 10:51 被阅读13次

record:从后台获取的数据

this.columns=[
    {
        title:'发送渠道',
        dataIndex:'channel',
        key:'channel',
        className:'columns',
        render:(text,record,index)=>{
            let channel='',
                if(record.channel=='1'){
                channel="邮件"
                }
                else if (record.channel=='10'){
                channel="短信"
                } else if (record.channel=='100'){
                channel="个推"
            }return{
                channel
            }
            
        }
    }
]

相关文章

网友评论

      本文标题:react项目名中把后台传过来的数字用汉字表示

      本文链接:https://www.haomeiwen.com/subject/bdxdixtx.html