chore: 工作流演示站

This commit is contained in:
dap 2024-12-31 12:39:35 +08:00
parent cf9edbb1c4
commit 26431faf6c

View File

@ -1,18 +1,34 @@
import { defineComponent } from 'vue';
import { Fallback } from '@vben/common-ui';
import { Page } from '@vben/common-ui';
import { openWindow } from '@vben/utils';
import { Result } from 'ant-design-vue';
export default defineComponent({
name: 'CommonSkeleton',
setup() {
return () => (
<div class="flex h-[600px] w-full items-center justify-center">
<Fallback
description="等待后端重构工作流后开发"
status="coming-soon"
title="等待开发"
/>
</div>
<Page autoContentHeight={true}>
<Result
status="success"
sub-title="等待后端发布"
title="已经开发完毕(warmflow分支)"
>
{{
extra: (
<div>
<a-button
onClick={() => openWindow('http://106.55.255.76')}
type="primary"
>
</a-button>
</div>
),
}}
</Result>
</Page>
);
},
});