Commit 69e68e924a4eb4067bd056980f24e295cf35a6ec
1 parent
76f07c64
fix: DEFECT-1680 公共接口测试时,产品和设备支持输入查询功能
Showing
1 changed file
with
4 additions
and
0 deletions
| ... | ... | @@ -41,6 +41,7 @@ |
| 41 | 41 | " |
| 42 | 42 | v-else-if="item.key === TableDefaultTypeEnum.ENTITYID" |
| 43 | 43 | v-model:value="item.value" |
| 44 | + v-bind="createPickerSearch()" | |
| 44 | 45 | placeholder="请选择" |
| 45 | 46 | :options="entityOptions" |
| 46 | 47 | allowClear |
| ... | ... | @@ -53,6 +54,7 @@ |
| 53 | 54 | " |
| 54 | 55 | v-else-if="item.key === TableDefaultTypeEnum.KEYS" |
| 55 | 56 | v-model:value="item.value" |
| 57 | + v-bind="createPickerSearch()" | |
| 56 | 58 | placeholder="请选择" |
| 57 | 59 | :options="attributeOptions" |
| 58 | 60 | mode="multiple" |
| ... | ... | @@ -102,6 +104,7 @@ |
| 102 | 104 | " |
| 103 | 105 | v-else |
| 104 | 106 | v-model:value="item.value" |
| 107 | + v-bind="createPickerSearch()" | |
| 105 | 108 | placeholder="请选择" |
| 106 | 109 | :options="valueOptions" |
| 107 | 110 | allowClear |
| ... | ... | @@ -157,6 +160,7 @@ |
| 157 | 160 | import { getPacketIntervalByRange } from '/@/views/device/localtion/cpns/TimePeriodForm/helper'; |
| 158 | 161 | import { uniqBy } from 'lodash'; |
| 159 | 162 | import { TableDefaultTypeEnum } from '../../../config/enum'; |
| 163 | + import { createPickerSearch } from '/@/utils/pickerSearch'; | |
| 160 | 164 | |
| 161 | 165 | const props = defineProps({ |
| 162 | 166 | method: { | ... | ... |