单号:{{item.billno}} {{item.status}} {{item.quotedpricetype}} {{tag}} {{tag}} 客户:{{item.enterprisename||' --'}} 报价日期:{{item.billdate}} 是否特价:{{item.specialoffer==1?'是':'否'}} module.exports.getColor = function (status) { var color = null; if (status == '新建') { color = '#3874F6'; } else if (status == '提交') { color = '#52C41A'; } else { color = '#FA8C16'; }; return color }