修复后的效果如下,之前就是table行内服务包类型的vue-treeselect无效
其实只要在treeselect组件里加上2个参数
代码语言:javascript复制<treeselect
append-to-body
z-index="9999"
v-model="scope.row.cgmlId"
:options="cgmlList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择上级菜单"
@select="selectCgItem($event,scope.$index)" />
主要是这个
append-to-body z-index="9999"
设置后就好用了;哈哈哈