diff --git a/packages/IntelligentSecurity/AppISManage/AppISManage.vue b/packages/IntelligentSecurity/AppISManage/AppISManage.vue
index 4e6a103a..93cab17b 100644
--- a/packages/IntelligentSecurity/AppISManage/AppISManage.vue
+++ b/packages/IntelligentSecurity/AppISManage/AppISManage.vue
@@ -221,9 +221,16 @@
       },
       renderTreeItem: function (h, {node, data}) {
         let show = data.deviceStatus == 1 ? 'show' : ''
+        const ids = this.ids.split(',')
+        const index = ids.indexOf(data.id) + 1
+        console.log(index, ids, data.id)
         if (node.isLeaf) {
           return (
               
+                {index > 0 ? 
+                
{ index }
+                : ''
+                }
                 
                 {node.label}
               设备列表
       
-        
         
       
@@ -276,8 +275,20 @@ export default {
       background: transparent;
       color: #fff;
 
-      .el-tree-node:focus > .el-tree-node__content, .el-tree-node__content:hover {
-        background: rgba(#fff, .1);
+      .el-tree-node__content {
+        background: transparent!important;
+      }
+      
+      .el-tree-node__children .is-current .el-tree-node__content {
+        background: linear-gradient(90deg, #299FFF 0%, #0C61FF 100%)!important;
+      }
+
+      .el-tree-node__content:hover {
+        background: transparent;
+      }
+
+      .el-tree-node__content {
+        height: 32px;
       }
     }