您的位置:首页 > 游戏 > 游戏 > el-table表格折叠时,点某行的折叠按钮时子行内容全展开问题,想做到点哪行哪行的子内容才展示

el-table表格折叠时,点某行的折叠按钮时子行内容全展开问题,想做到点哪行哪行的子内容才展示

2024/11/17 12:26:49 来源:https://blog.csdn.net/weixin_43337481/article/details/141350319  浏览:    关键词:el-table表格折叠时,点某行的折叠按钮时子行内容全展开问题,想做到点哪行哪行的子内容才展示

今天遇到了el-table表格折叠时,点某行的折叠按钮时子行内容全展开问题,

想要的是点哪行哪行的子内容才展示,问题解决方案:
   1、在ProTable 中加 :row-key="id" (ProTable是封装的el-table)

<ProTableref="proTable":columns="columns":data="tableData1":data-callback="dataCallback":tool-button="false":pagination="false":height="490":card="false":key="componentKey":row-key="id"><template #operation="scope"><el-button type="primary" link :icon="EditPen" @click="openTab(scope.row)">{{!scope.row.flag ? t("excel.input") : t("excel.show")}}</el-button><el-button type="primary" link :icon="Delete" @click="openDelete(scope.row)">{{ t("excel.delete") }}</el-button></template><el-table-column type="expand"><template #default="scope"><div><el-table :data="scope.row.family" ><el-table-column label="Name" prop="name" /><el-table-column label="State" prop="state" /><el-table-column label="City" prop="city" /><el-table-column label="Address" prop="address" /><el-table-column label="Zip" prop="zip" /></el-table></div></template></el-table-column></ProTable>


   2、在 tableData1 中每个对象加id值

const tableData1 = [{id: 1,family: [{name: 'Jerry1',state: 'California',city: 'San Francisco',address: '3650 21st St, San Francisco',zip: 'CA 94114',}],},{id: 2,family: [{name: 'Jerry2',state: 'California',city: 'San Francisco',address: '3650 21st St, San Francisco',zip: 'CA 94114',}]}
]

问题解决

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com