Skip to content

Commit

Permalink
feat(u): 调整页面内容为卡片视图
Browse files Browse the repository at this point in the history
  • Loading branch information
twinh committed Jul 14, 2024
1 parent 9edf4bb commit 5813968
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pages/admin/wechat-mp/subscribe-message-templates/new.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/**
* @share [id]/edit
*/
import {CListBtn} from '@mxjs/a-clink';
import {Page, PageActions} from '@mxjs/a-page';
import {Form, FormItem, FormAction} from '@mxjs/a-form';
import { CListBtn } from '@mxjs/a-clink';
import { Page, PageActions } from '@mxjs/a-page';
import { Form, FormItem, FormAction } from '@mxjs/a-form';
import { Section } from '@mxjs/a-section';

const New = () => {
return (
Expand All @@ -13,13 +14,15 @@ const New = () => {
</PageActions>

<Form>
<FormItem label="名称" name="name" required/>
<Section>
<FormItem label="名称" name="name" required/>

<FormItem label="标识" name="code" required/>
<FormItem label="标识" name="code" required/>

<FormItem label="模板编号" name="templateId" required/>
<FormItem label="模板编号" name="templateId" required/>
</Section>

<FormAction/>
<FormAction variant="card"/>
</Form>
</Page>
);
Expand Down

0 comments on commit 5813968

Please sign in to comment.