当前位置:   article > 正文

自定义el-select下拉菜单的内容以及数据回显的内容

自定义el-select下拉菜单的内容以及数据回显的内容

最终的效果

下拉选项的自定义内容好实现,因为他有默认插槽,所以直接在el-option标签里面写自定义内容就可以实现

  1. <el-select
  2. ref="seriesBorderTypeRef"
  3. class="series-border-type"
  4. @change="changeSeriesBorderType"
  5. v-model="customStyle.seriesBorderType"
  6. placeholder="请选择边框类型"
  7. style="width: 100%; margin-bottom: 16px"
  8. >
  9. <el-option value="solid" style="display: flex; align-items: center">
  10. <div style="border-top: 2px solid #000; width: 100%; height: 0"></div>
  11. </el-option>
  12. <el-option value="dashed" style="display: flex; align-items: center">
  13. <div style="border-top: 2px dashed #000; width: 100%; height: 0"></div>
  14. </el-option>
  15. <el-option value="dotted" style="display: flex; align-items: center">
  16. <div style="border-top: 2px dotted #000; width: 100%; height: 0"></div>
  17. </el-option>
  18. </el-select>

关键上方选中的数据回显应该怎么做

这里我设置了ref为seriesBorderTypeRef,在change事件中通过以下代码就可实现数据回显部分

  1. seriesBorderTypeRef.value.$el.children[0].children[0].setAttribute(
  2. "style",
  3. `width: 100%; height:0;border-top: 2px ${customStyle.seriesBorderType} #000;`
  4. );

但是此时虽然实现了自定义内容但v-model绑定的值也回显了,所以此时我们要对默认的数据回显处理一下,在style标签中设置如下代码

  1. .series-border-type {
  2. ::v-deep(.el-select__placeholder span) {
  3. display: none;
  4. }
  5. }

.现在完美实现了需求,最后不要忘记清除添加的style样式哦

seriesBorderTypeRef.value.$el.children[0].children[0].removeAttribute("style");

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/577696
推荐阅读
  

闽ICP备14008679号