{{item.name}}
{{item.distance}}km
{{item.locDetail}}
月出货量:{{item.categoryProductionCapacityPerMonth}}吨
出货品类:{{categoryString(item.mainCategoryList)}}
最近出货:{{item.recentlyShipmentsPaperMill}}
function categoryString(mainCategoryList) {
var cate = ''
for (var index = 0; index < mainCategoryList.length; index++) {
if(index == 0){
cate = mainCategoryList[index]
} else {
cate += '、' + mainCategoryList[index]
}
}
return cate
}
module.exports = categoryString