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