fix
Some checks failed
Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
2025-12-25 11:16:21 +08:00
parent ddeeb413ed
commit f31f1abaef

View File

@@ -356,33 +356,22 @@ function autoRun() {
/> />
<!-- 调试控制按钮 --> <!-- 调试控制按钮 -->
<n-flex align="center" justify="center" style="margin-top: 20px"> <n-flex size="large" justify="center" style="margin-top: 20px">
<!-- 步骤控制 --> <!-- 步骤控制 -->
<n-tooltip> <n-button circle @click="firstStep">
<template #trigger>
<n-button @click="firstStep">
<template #icon> <template #icon>
<Icon icon="material-symbols:skip-previous" /> <Icon icon="material-symbols:skip-previous" />
</template> </template>
</n-button> </n-button>
</template>
第一步
</n-tooltip>
<n-tooltip> <n-button circle type="primary" @click="prevStep">
<template #trigger>
<n-button type="primary" @click="prevStep">
<template #icon> <template #icon>
<Icon icon="tabler:chevron-left" /> <Icon icon="tabler:chevron-left" />
</template> </template>
</n-button> </n-button>
</template>
上一步
</n-tooltip>
<n-tooltip>
<template #trigger>
<n-button <n-button
circle
:type="isAutoRunning ? 'warning' : 'info'" :type="isAutoRunning ? 'warning' : 'info'"
@click="autoRun" @click="autoRun"
> >
@@ -396,31 +385,18 @@ function autoRun() {
/> />
</template> </template>
</n-button> </n-button>
</template>
{{ isAutoRunning ? "暂停自动运行" : "开始自动运行" }}
</n-tooltip>
<n-tooltip> <n-button circle type="error" @click="nextStep">
<template #trigger>
<n-button type="error" @click="nextStep">
<template #icon> <template #icon>
<Icon icon="tabler:chevron-right" /> <Icon icon="tabler:chevron-right" />
</template> </template>
</n-button> </n-button>
</template>
下一步
</n-tooltip>
<n-tooltip> <n-button circle @click="lastStep">
<template #trigger>
<n-button @click="lastStep">
<template #icon> <template #icon>
<Icon icon="material-symbols:skip-next" /> <Icon icon="material-symbols:skip-next" />
</template> </template>
</n-button> </n-button>
</template>
最后一步
</n-tooltip>
</n-flex> </n-flex>
<!-- 调试进度条 --> <!-- 调试进度条 -->