CzRger 1 年間 前
コミット
fb65c4c476
共有3 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 1 1
      src/components/cus/cus-form-link/cascader.vue
  2. 1 1
      src/components/cus/cus-form-link/dept.vue
  3. 1 1
      src/components/cus/cus-form-link/select.vue

+ 1 - 1
src/components/cus/cus-form-link/cascader.vue

@@ -7,7 +7,7 @@
        :placeholder="$attrs.placeholder ? $attrs.placeholder : `请选择${label}`"
        :options="options"
        :clearable="$util.isValue($attrs.clearable) ? $attrs.clearable : true"
-       filterable
+       :filterable="$util.isValue($attrs.filterable) ? $attrs.filterable : true"
        :props="propsCpt"
        :teleported="false"
        :disabled="$util.isValue($attrs.disabled) ? $attrs.disabled : formView"

+ 1 - 1
src/components/cus/cus-form-link/dept.vue

@@ -7,7 +7,7 @@
         :placeholder="$attrs.placeholder ? $attrs.placeholder : `请选择${label}`"
         :data="optionsCpt"
         :clearable="$util.isValue($attrs.clearable) ? $attrs.clearable : true"
-        filterable
+        :filterable="$util.isValue($attrs.filterable) ? $attrs.filterable : true"
         :check-strictly="checkStrictly"
         node-key="deptId"
         :props="{

+ 1 - 1
src/components/cus/cus-form-link/select.vue

@@ -6,7 +6,7 @@
         v-model="paramVal"
         :placeholder="$attrs.placeholder ? $attrs.placeholder : `请选择${label}`"
         :clearable="$util.isValue($attrs.clearable) ? $attrs.clearable : true"
-        filterable
+        :filterable="$util.isValue($attrs.filterable) ? $attrs.filterable : true"
         @change="handleChange"
         :popper-append-to-body="false"
         :title="optionsMapCpt.get(paramVal)?.[labelKey]"