今天差点被一个不起眼的bug搞到吐,就是在给表格设置row-key的时候,一直设置不成功,一直报错缺少row-key,一共就那两行代码 实在是找不到还存在什么问题... 先看下报错截图...
看下代码 我在展开行里面用到了一个表格 并且存放表格数据用的参数是children 怎么也没想到问题能出在这种地方!!! 接着往下看...
<el-table-column type="expand" key="expand"><template v-slot="{ row }"><!-- 内层表格 --><el-table:data="row.children"class="innerTable"style="width: 100%":header-cell-style="{'text-align': 'center', background: '#f6f7fb', color: '#515a6e',}":cell-style="{ textAlign: 'center' }"@selection-change="handlerSelectChange($event, row)">
测试的过程中 给children里面的数据也加上了id 这时候页面已经出现了一些反应... 然后就考虑是不是这个参数的问题... 随便写了个参数 问题解决...
<el-table-column type="expand" key="expand"><template v-slot="{ row }"><!-- 内层表格 --><el-table:data="row.cList"class="innerTable"style="width: 100%":header-cell-style="{'text-align': 'center', background: '#f6f7fb', color: '#515a6e',}":cell-style="{ textAlign: 'center' }"@selection-change="handlerSelectChange($event, row)">