slice截取字符串replace替换字符串

 item.partyName = item.partyName.slice(0, 14) + '...'

四舍五入+替换

 let str = Math.round(res.amountRatio * 100);
 this.amountRatio = str.toString().replace('-', '');

获取数组中的最大值

     let max2 = Math.max.apply(null, amountarr);
  //处理图表数据
                if (res.bankTypeStatistics.length > 0) {
                    let countarr = [];
                    let amountarr = [];
                    let bankTypearr = [];
                    res.bankTypeStatistics.map(item => {
                        amountarr.push(Math.round(item.amount));
                        countarr.push(item.count);
                        if (item.bankType.indexOf('制') != 1) {
                            item.bankType = item.bankType.replace('制', '');
                        }
                        bankTypearr.push(item.bankType);
                    })

                    let max1 = Math.max.apply(null, countarr) + 1;
                    let max2 = Math.max.apply(null, amountarr);

                    this.punishOrder.yAxis[0].data = bankTypearr;
                    this.punishOrder.series[0].data = countarr;
                    this.punishOrder.series[1].data = amountarr;
                    this.punishOrder.xAxis[0].max = max1 + (max1 / 2);
                    this.punishOrder.xAxis[1].max = max2 + (max2 / 2);
                    this.drawPunish(this.punishOrder);
                }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值