diff --git a/src/components/shared/SelectInput.vue b/src/components/shared/SelectInput.vue index 7120fe22..06cd175e 100644 --- a/src/components/shared/SelectInput.vue +++ b/src/components/shared/SelectInput.vue @@ -27,6 +27,7 @@ const props = withDefaults( fillInput?: boolean; disable?: boolean; multiple?: boolean; + hideInput?: boolean; rules?: ((value: string) => string | true)[]; }>(), @@ -73,7 +74,7 @@ watch( outlined :clearable :disable - use-input + :use-input="!hideInput" emit-value map-options :multiple diff --git a/src/components/shared/select/SelectQuotation.vue b/src/components/shared/select/SelectQuotation.vue index 15dfb89c..ae9f7863 100644 --- a/src/components/shared/select/SelectQuotation.vue +++ b/src/components/shared/select/SelectQuotation.vue @@ -108,6 +108,7 @@ function setDefaultValue() { :label :placeholder :readonly + :hide-input="value !== ''" :disable="disabled" :option="selectOptions" :hide-selected="false"