一、
組件:el-table
問題:使用動態數據創建多級表頭后,刷新頁面時,table行會串行,某些列丟失,圖片列未顯示圖片
解決方案:給el-table增加key
<el-table :key="`${Matn.random()}${item.codeId}`"><el-table-column v-for="col in colList" :key="col.colId"></el-table-column></el-table>
二、
組件:el-tree
問題:當數據過多,數據出現滾動條時,拖拽某元素,拖拽指標線位置出現偏移
解決方案:將高度設置給el-tree父級dom上
<div class="complex-content"><el-tree></el-tree>
</div>.complex-content {height: calc(100% - 144px);overflow-y: auto;.el-tree {margin-top: 8px;}
}