{{moment.formateDate(item.tipsTime)}}
{{item.shortName}}
{{item.hasFollowed ? '已关注' : '点击关注'}}
{{formate.formatePrice(item.typicalFloatingQuotedPrice, 0)}}
调价时间:{{moment.formateTimes(item.latestQuoteTime, 5, 10)}}
{{stringUtil.queue(item.retainedReceivedQuantity)}}
{{stringUtil.precent(item.startDeductionPoints)}}
暂无数据,点击刷新
品类
价格
(元/吨)
涨跌
平均扣点
(最近7天)
{{item.categoryName}}
{{formate.formatePrice(item.quotedPrice, 0)}}
{{formate.formatePrice(item.floatingQuotedPrice, 0)}}
{{item.averageDeductionPoints || '- -'}}
代卖
var queue = function(val) {
if(val > 0){
return val + '辆'
}
return '- -'
}
var precent = function(val) {
if(val > 0){
return (val * 100) + '%'
}
return '- -'
}
module.exports.queue = queue;
module.exports.precent = precent;