feat: add resetpwd cmd

This commit is contained in:
engigu
2026-02-27 23:08:44 +08:00
parent 8775bec155
commit d9e73a9d18
10 changed files with 206 additions and 16 deletions
+41 -4
View File
@@ -1,10 +1,22 @@
<script setup lang="ts">
import { ref } from 'vue'
import { ref, onMounted } from 'vue'
import { Button } from '@/components/ui/button'
import { RefreshCw } from 'lucide-vue-next'
import { RefreshCw, Info } from 'lucide-vue-next'
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'
import XTerminal from '@/components/XTerminal.vue'
import { api } from '@/api'
const terminalRef = ref<InstanceType<typeof XTerminal> | null>(null)
const cmds = ref<{ name: string, description: string }[]>([])
onMounted(async () => {
try {
const res = await api.terminal.cmds()
cmds.value = res
} catch (error) {
console.error('Failed to load terminal commands', error)
}
})
function reconnect() {
terminalRef.value?.reconnect()
@@ -14,8 +26,33 @@ function reconnect() {
<template>
<div class="flex flex-col h-[calc(100vh-120px)] sm:h-[calc(100vh-100px)]">
<div class="flex items-center justify-between p-2 border border-[#3c3c3c] rounded-t-md bg-[#252526]">
<span class="text-xs font-medium text-gray-300">终端</span>
<Button variant="ghost" size="icon" class="h-6 w-6 text-gray-400 hover:text-white" @click="reconnect" title="重新连接">
<div class="flex items-center gap-2">
<span class="text-xs font-medium text-gray-300">终端</span>
<Popover>
<PopoverTrigger as-child>
<div class="flex items-center gap-1 cursor-pointer text-gray-400 hover:text-white transition-colors"
title="查看内置命令">
<span class="text-xs">内置命令</span>
<Info class="h-3.5 w-3.5" />
</div>
</PopoverTrigger>
<PopoverContent align="start" side="bottom" :side-offset="8"
class="w-80 border-[#3c3c3c] bg-[#252526] text-gray-300">
<div class="space-y-2">
<h4 class="text-sm font-medium text-white mb-2 pb-2 border-b border-[#3c3c3c]">内置命令说明</h4>
<div v-if="cmds.length === 0" class="text-xs text-gray-500">获取中...</div>
<div v-for="cmd in cmds" :key="cmd.name"
class="flex flex-col space-y-1 text-xs border-b border-[#3c3c3c] pb-2 last:border-0 last:pb-0">
<span class="font-bold text-blue-400">baihu {{ cmd.name }}</span>
<span class="text-gray-400">{{ cmd.description }}</span>
</div>
</div>
</PopoverContent>
</Popover>
</div>
<Button variant="ghost" size="icon" class="h-6 w-6 text-gray-400 hover:text-white" @click="reconnect"
title="重新连接">
<RefreshCw class="h-3 w-3" />
</Button>
</div>