review:【antd】流程设计器、文件上传等

This commit is contained in:
YunaiV
2025-09-27 14:02:47 +08:00
parent f50ca431ec
commit af291928ad
5 changed files with 11 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
<script lang="ts" setup>
// TODO @puhui999这个看看怎么和对应的 antd 【代码风格】,保持一致一些;
import type {
UploadFile,
UploadInstance,

View File

@@ -280,6 +280,7 @@ const [Modal, modalApi] = useVbenModal({
:label="key.split('/').pop()"
:name="key"
>
<!-- TODO @puhui999这里好像会有左右的滚动条 antd 不太一样 -->
<div
class="h-full rounded-md bg-gray-50 !p-0 text-gray-800 dark:bg-gray-800 dark:text-gray-200"
>
@@ -291,6 +292,7 @@ const [Modal, modalApi] = useVbenModal({
</div>
</ElTabPane>
<template #add-icon>
<!-- TODO @puhui999这了有没办法加个复制按钮哈 antd 类似 -->
<IconifyIcon icon="ant-design:copy-twotone" />
</template>
</ElTabs>

View File

@@ -37,6 +37,7 @@ const [Form] = useVbenForm({
</script>
<template>
<!-- TODO @puhui999这个看看怎么和 antd file/modules/form.vue UI保持一致一点哈 -->
<Modal title="上传文件">
<Form class="mx-4" />
</Modal>