动漫人物
先将表格的数据按照bookCategoryId分个类,形成以下数据格式tableData: { English: [], retail: []}渲染的时候通过bookCategoryId取得相应的表格数据,例如tableData.English,对于以下的tableData[item.bookCategoryId]<el-tab-pane v-for="(item,index) in classify" :key="index" :label="item.bookCategoryName" :name="item.bookCategoryId"> <el-table :data="tableData[item.bookCategoryId]"></el-table></el-tab-pane>