|
@@ -4,6 +4,7 @@ |
|
@@ -4,6 +4,7 @@ |
|
4
|
v-model:value="selectValue"
|
4
|
v-model:value="selectValue"
|
|
5
|
style="width: 100%"
|
5
|
style="width: 100%"
|
|
6
|
:options="selectOptions"
|
6
|
:options="selectOptions"
|
|
|
|
7
|
+ v-bind="createPickerSearch()"
|
|
7
|
@change="handleDeviceChange"
|
8
|
@change="handleDeviceChange"
|
|
8
|
:disabled="disabled"
|
9
|
:disabled="disabled"
|
|
9
|
mode="multiple"
|
10
|
mode="multiple"
|
|
@@ -23,6 +24,7 @@ |
|
@@ -23,6 +24,7 @@ |
|
23
|
import { Select } from 'ant-design-vue';
|
24
|
import { Select } from 'ant-design-vue';
|
|
24
|
import SelectAttributes from './SelectAttributes.vue';
|
25
|
import SelectAttributes from './SelectAttributes.vue';
|
|
25
|
import { TDeviceList, TSelectOption } from '../type';
|
26
|
import { TDeviceList, TSelectOption } from '../type';
|
|
|
|
27
|
+ import { createPickerSearch } from '/@/utils/pickerSearch';
|
|
26
|
|
28
|
|
|
27
|
const props = defineProps({
|
29
|
const props = defineProps({
|
|
28
|
selectOptions: {
|
30
|
selectOptions: {
|