{{item.type}}
            {{item.brandname}}
            {{item.tradefield}}
        
        
            {{item.status}}
        
    
    
        
            {{item.type}}:{{item.sonum}}
        
        
            区域经理:{{item.salename || ' --'}}
        
        
            单据时间:{{item.billdate}}
        
        
            退回原因:{{item.backreason || ' --'}}
        
        
            共计{{item.qty}}件商品
        
        
            合计:{{handleHide.query(item.defaultamount,hidePrice)}}元
        
    
    
        {{item.contacts[0].name||item.name}}
        {{item.contacts[0].phonenumber||item.phonenumber}}
        {{item.contacts[0].address||item.address}}
    
    
        暂无收货人
    
    module.exports = {
        color: function (statu) {
            var color = '#999999';
            switch (statu) {
                case "审核":
                    color = '#FA8C16';
                    break;
                case "提交":
                    color = '#52C41A';
                    break;
                case "新建":
                    color = '#333333';
                    break;
            };
            return color;
        }
    }