1
0

feat(all): 初始化版本

This commit is contained in:
2025-08-30 10:10:11 +08:00
commit 7f3b61b854
55 changed files with 11289 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import React from 'react'
import {amisRender, commonInfo} from '../../util/amis.tsx'
function TaskAdd() {
return (
<div className="task-add">
{amisRender(
{
type: 'page',
title: '任务添加',
body: [
{
debug: commonInfo.debug,
type: 'form',
wrapWithPanel: false,
mode: 'horizontal',
labelAlign: 'left',
body: [],
},
],
},
)}
</div>
)
}
export default React.memo(TaskAdd)