From fbaf9fb4654d0e79296d7c4be209ce8e255ade5d Mon Sep 17 00:00:00 2001 From: xlf <3055204202@qq.com> Date: Wed, 13 Sep 2023 10:53:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8Dgitignore=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=BF=BD=E7=95=A5build=E6=96=87=E4=BB=B6=E5=A4=B9?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 - dash-fastapi-frontend/views/tool/build/__init__.py | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 dash-fastapi-frontend/views/tool/build/__init__.py diff --git a/.gitignore b/.gitignore index a81c8ee..f6c6f30 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ __pycache__/ # Distribution / packaging .Python -build/ develop-eggs/ dist/ downloads/ diff --git a/dash-fastapi-frontend/views/tool/build/__init__.py b/dash-fastapi-frontend/views/tool/build/__init__.py new file mode 100644 index 0000000..f510659 --- /dev/null +++ b/dash-fastapi-frontend/views/tool/build/__init__.py @@ -0,0 +1,8 @@ +from dash import html +import feffery_utils_components as fuc +import feffery_antd_components as fac + + +def render(button_perms): + + return html.Div('我是表单构建') -- Gitee