单号:{{item.billnum}}
{{item.status}}
{{tag}}
{{tag}}
提报要求:{{item.remarks}}
提报开始时间:{{item.periodstart}}
提报截止时间:{{item.periodend||' --'}}
预测金额:{{item.amount}}
module.exports.getColor = function (status) {
var color = null;
if (status == '待提报') {
color = '#3874F6';
} else if (status == '提报中') {
color = '#52C41A';
} else {
color = '#BBBBBB';
};
return color
}