diff --git a/main/manager-web/src/components/HeaderBar.vue b/main/manager-web/src/components/HeaderBar.vue index acc0e981..afd1e1bb 100644 --- a/main/manager-web/src/components/HeaderBar.vue +++ b/main/manager-web/src/components/HeaderBar.vue @@ -2,31 +2,39 @@
- - + +
- + 智能体管理
- + 控制台
设备管理 - +
- - -
- - + + + + {{ userInfo.username || '加载中...' }} + + + 个人中心 + 修改密码 + 退出登录 + +
@@ -43,6 +51,7 @@ export default { return { serach: '', userInfo: { + username: '', mobile: '' } } @@ -71,7 +80,7 @@ export default { // 当搜索内容为空时,显示原始完整列表 filteredDevices = this.$parent.originalDevices; } else { - // 过滤逻辑 + // 过滤逻辑 filteredDevices = this.devices.filter(device => { return device.agentName.includes(searchValue) || device.ttsModelName.includes(searchValue) || @@ -158,6 +167,7 @@ export default { text-align: left; color: #3d4566; } + .console { width: 90px; height: 22px; @@ -172,4 +182,14 @@ export default { gap: 7px; margin-left: 15px; } - \ No newline at end of file + +.el-dropdown-link { + cursor: pointer; + color: #5778ff; +} + +.el-icon-arrow-down { + font-size: 12px; +} + +