<template v-for="item in oldItemList"> <template v-for="(item2,index) in item.data"> <tr> <td>{{index+1}}</td> <td colspan="3">{{item2.title}}</td> <td>{{item2.real_price}}</td> <td>{{item2.is_res_price}}</td> <td>{{item2.pay_price}}</td> </tr> </template> </template>
贴代码,在template 上循环就可以了,天坑