现象:
table中的treeselect下拉数据不显示
解决方法:
增加属性 append-to-body z-index="9000"
<el-table-column label="XXX" prop="Id" >
slot-scope="scope">
:options="partOptions"
:normalizer="normalizer"
:show-count="true"
append-to-body
z-index="9000"
value-consists-of="LEAF_PRIORITY"
:disable-branch-nodes="true"
v-model="scope.row.Id"
placeholder="XXXX"
/>
z-index 属性设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面。
zIndex | Type: Number | String Default: 999 | z-index 菜单中的. |
appendToBody | Type: Boolean Default: false | 将菜单追加到 |