dashboard
repositories
filestore
activity
search
login
geoai
/
geoai-workbench
geoai-所有demo基础仓
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat:项目基础整理
shuishen
3 days ago
4092854b0bea9e1fc02f29222c6f7cd876e565a5
[geoai/geoai-workbench.git]
/
apps
/
workbench-console
/
src
/
components
/
ArtifactState.vue
1
2
3
4
5
6
7
8
9
10
<script setup lang="ts">
import { LoadingOutlined } from "@ant-design/icons-vue";
defineProps<{ loading: boolean; error: string | null }>();
</script>
<template>
<a-alert v-if="error" type="error" show-icon :message="error" description="请确认只读结果服务已在 127.0.0.1:6173 运行,且该能力已有输出文件。" />
<div v-else-if="loading" class="loading-block"><LoadingOutlined spin /><span>正在读取本地实验工件...</span></div>
</template>