fix: 产品新增分类搜索

This commit is contained in:
100011797 2023-06-09 10:09:29 +08:00
parent e5988d2b92
commit ab79402dc9
1 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@
children: 'children',
}"
:filterTreeNode="
(v, option) => filterSelectNode(v, option)
(v, option) => filterSelectNode(v, option, 'name')
"
>
<template> </template>
@ -165,13 +165,13 @@ const deviceList = ref([
label: '网关子设备',
value: 'childrenDevice',
iconUrl: getImage('/device-type-2.png'),
tooltip: '能挂载子设备与平台进行通信的设备',
tooltip: '作为网关的子设备,有网关代理连接到物联网平台',
},
{
label: '网关设备',
value: 'gateway',
iconUrl: getImage('/device/device-type-3.png'),
tooltip: '作为网关的子设备,有网关代理连接到物联网平台',
tooltip: '能挂载子设备与平台进行通信的设备',
},
]);