代卖订单
{{loading? '正在加载' : '暂无数据'}}
{{item.paperMillName}}
{{agent.orderStatus(item.status)}}
订单编号
{{item.orderId}}
纸品分类:
{{item.paperCategoryName}}
预估重量:
{{formate.formateWeight(item.totalEstimatedWeight)}}
货车数量:
{{item.carNum}}辆
货到时间:
{{item.deliveryTime}}
货车车牌{{index+1}}:{{cell.logisticcsInfo.plateNumber}}
{{cell.status==50?'待预约':(cell.status==51?'待送货':(cell.status==52?'结算中':(cell.status==53?'已完成':(cell.status==54?'已关闭':'---'))))}}
{{finished?'到底啦~':'加载中...'}}
function statusColor(status) {
if (status == 50) {
return '#F12C20'
} else if (status == 51) {
return '#F12C20'
} else if (status == 52) {
return '#F12C20'
} else if (status == 53) {
return '#008AFF'
} else if (status == 54) {
return '#09BB07'
} else if (status == 55) {
return '#888888'
}
return ''
}
module.exports = statusColor