Compare commits

...

2 Commits
main ... plus

Author SHA1 Message Date
chaos-zhu
1171d6e6cc 分组添加实例数量标识 2024-11-01 21:00:59 +08:00
chaos-zhu
ccec3868bb 优化登录 2024-10-24 22:18:12 +08:00
2 changed files with 2 additions and 9 deletions

View File

@ -53,6 +53,7 @@
:trigger-on-focus="false" :trigger-on-focus="false"
clearable clearable
autofocus autofocus
@keyup.enter="handleLogin"
/> />
</el-form-item> </el-form-item>
<el-form-item prop="jwtExpires" label="有效期"> <el-form-item prop="jwtExpires" label="有效期">

View File

@ -44,17 +44,9 @@
<el-collapse-item v-for="(hosts, groupName) in groupHostList" :key="groupName" :name="groupName"> <el-collapse-item v-for="(hosts, groupName) in groupHostList" :key="groupName" :name="groupName">
<template #title> <template #title>
<div class="group_title"> <div class="group_title">
{{ groupName }} {{ `${groupName}`+`${hosts.length ? `(${hosts.length})` : ''}` }}
</div> </div>
</template> </template>
<!-- <HostCard
v-for="(item, index) in hosts"
:key="index"
:host-info="item"
:hidden-ip="hiddenIp"
@update-host="handleUpdateHost"
@update-list="handleUpdateList"
/> -->
<HostTable <HostTable
ref="hostTableRefs" ref="hostTableRefs"
:hosts="hosts" :hosts="hosts"