{{item.type}} {{item.brandname}} {{item.tradefield}} {{item.status}} 订单号:{{item.sonum}} 区域经理:{{item.name}} 单据日期:{{item.createdate}} 共计{{item.qty}}件商品 合计:¥{{item.amount}} 收货人信息 module.exports = { color: function (statu) { var color = '#999999'; switch (statu) { case "审核": color = '#FA8C16'; break; case "提交": color = '#52C41A'; break; case "新建": color = '#333333'; break; }; return color; } }