美文网首页
常用函数整理

常用函数整理

作者: 追逐繁星的阿忠 | 来源:发表于2018-11-13 16:16 被阅读2次
v.top5 = v.commissions.slice(0,5);
                v.topAll = v.commissions.slice(0,v.length-1);
    deep(r): void {
        for (let i of r) {
            i["statusName"] = ''
            if (i.status == 1) {
                i["statusName"] = '待审核'
            } else if (i.status == 2) {
                i["statusName"] = '审核通过'
            } else if (i.status == -1) {
                i["statusName"] = '审核未通过'
            }
            i["startTime"] = this._commonService.time2Date(i.start_time, true, '-')
            i["endTime"] = this._commonService.time2Date(i.end_time, true, '-')

        }
        return r
    }

相关文章

网友评论

      本文标题:常用函数整理

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