安装进度弹窗更新为动态显示标题
This commit is contained in:
parent
042bda9c4a
commit
dd3330e3c2
@ -1038,5 +1038,7 @@
|
||||
"Agent installed successfully!": "智能体安装成功!",
|
||||
"Agent installed successfully": "智能体安装成功",
|
||||
"Agent flow data is missing": "智能体流程数据不存在",
|
||||
"Installation failed": "安装失败"
|
||||
"Installation failed": "安装失败",
|
||||
"Installing Agent": "正在安装智能体",
|
||||
"Installing Node": "正在安装节点"
|
||||
}
|
||||
|
||||
@ -120,6 +120,7 @@
|
||||
:message="installMessage"
|
||||
:status="installStatus"
|
||||
:installing="installing"
|
||||
:title="t('Installing Agent')"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -140,6 +140,7 @@
|
||||
:message="installMessage"
|
||||
:status="installStatus"
|
||||
:installing="installing"
|
||||
:title="t('Installing Agent')"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<n-modal v-model:show="show" preset="card" style="width: 500px">
|
||||
<template #header>
|
||||
<h3>{{ t('Installing App') }}</h3>
|
||||
<h3>{{ title || t('Installing App') }}</h3>
|
||||
</template>
|
||||
|
||||
<div class="progress-content">
|
||||
@ -32,6 +32,7 @@ interface Props {
|
||||
message: string
|
||||
status: 'success' | 'error' | 'info'
|
||||
installing: boolean
|
||||
title?: string
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
|
||||
@ -129,6 +129,7 @@
|
||||
:message="installMessage"
|
||||
:status="installStatus"
|
||||
:installing="installing"
|
||||
:title="t('Installing Node')"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -145,6 +145,7 @@
|
||||
:message="installMessage"
|
||||
:status="installStatus"
|
||||
:installing="installing"
|
||||
:title="t('Installing Node')"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user