chore: 工作流演示站
This commit is contained in:
parent
cf9edbb1c4
commit
26431faf6c
@ -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>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user