vue-element-plus-admin icon indicating copy to clipboard operation
vue-element-plus-admin copied to clipboard

怎么在search组件中的下拉框里面加个全选,实现筛选全选等功能

Open chenchengwei1993 opened this issue 2 years ago • 0 comments

import { Search } from "@/components/Search"; const searchData: FormSchema[] = [ { field: "advertiserId", label: t("ad.advertiserName"), value: thisForm.advertiserId, component: "Select", componentProps: { multiple:true, collapseTags:true, filterable: true, options: advertiserNameOptions, onChange: (e) => { if (e.length == 0) { thisForm.advertiserId = 'all' } else { thisForm.advertiserId = e.toString() } }, } }, ] search组件应该怎么设置插槽等

chenchengwei1993 avatar Apr 04 '23 10:04 chenchengwei1993