2025-04-21 19:05:00 +08:00
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
|
import { Page } from '@vben/common-ui';
|
2025-04-28 10:17:21 +08:00
|
|
|
|
|
|
|
|
|
|
import { Button } from 'ant-design-vue';
|
|
|
|
|
|
|
|
|
|
|
|
import { DocAlert } from '#/components/doc-alert';
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<Page>
|
|
|
|
|
|
<DocAlert title="流程表达式" url="https://doc.iocoder.cn/bpm/expression/" />
|
2025-04-28 10:17:21 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
danger
|
|
|
|
|
|
type="link"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
|
|
|
|
|
|
>
|
2025-04-21 19:05:00 +08:00
|
|
|
|
该功能支持 Vue3 + element-plus 版本!
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<br />
|
2025-04-28 10:17:21 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
type="link"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processExpression/index"
|
|
|
|
|
|
>
|
|
|
|
|
|
可参考
|
|
|
|
|
|
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processExpression/index
|
|
|
|
|
|
代码,pull request 贡献给我们!
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Page>
|
2025-04-28 10:17:21 +08:00
|
|
|
|
</template>
|