chore: 工作流演示站
This commit is contained in:
parent
cf9edbb1c4
commit
26431faf6c
@ -1,18 +1,34 @@
|
|||||||
import { defineComponent } from 'vue';
|
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({
|
export default defineComponent({
|
||||||
name: 'CommonSkeleton',
|
name: 'CommonSkeleton',
|
||||||
setup() {
|
setup() {
|
||||||
return () => (
|
return () => (
|
||||||
<div class="flex h-[600px] w-full items-center justify-center">
|
<Page autoContentHeight={true}>
|
||||||
<Fallback
|
<Result
|
||||||
description="等待后端重构工作流后开发"
|
status="success"
|
||||||
status="coming-soon"
|
sub-title="等待后端发布"
|
||||||
title="等待开发"
|
title="已经开发完毕(warmflow分支)"
|
||||||
/>
|
>
|
||||||
|
{{
|
||||||
|
extra: (
|
||||||
|
<div>
|
||||||
|
<a-button
|
||||||
|
onClick={() => openWindow('http://106.55.255.76')}
|
||||||
|
type="primary"
|
||||||
|
>
|
||||||
|
前往工作流版本演示站
|
||||||
|
</a-button>
|
||||||
</div>
|
</div>
|
||||||
|
),
|
||||||
|
}}
|
||||||
|
</Result>
|
||||||
|
</Page>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user