{{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天) {{item.categoryName}} {{formate.formatePrice(item.quotedPrice, 0)}} {{stringUtil.roundPrice(item.floatingQuotedPrice)}} {{stringUtil.precent(item.averageDeductionPoints)}} 代卖 var queue = function(val) { if(val > 0){ return val + '辆' } return '- -' } var precent = function(val) { 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;