1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <template> ${info.presaleHousePrintList && info.presaleHousePrintList.map(function (item, index) { return `<tr> <td >${item.hcBldgname}</td> <td >${item.hcAllstctarea}</td> <td >${item.hcBldusageCodeName} </td> <td >${item.totalNum} </td> <td >${item.hcFixCodeName} </td> <td >${item.areaCase} </td> <td >${item.countNum} </td> <td >${item.hcHouseType} </td> <td >${item.minPrice}</td> <td >${item.maxPrice}</td> <td >${item.avgPrice}</td> </tr>` }).join(' ')} </template> |
废话不多说,记得join。