diff --git a/examples/components/Page/Form.jsx b/examples/components/Page/Form.jsx index 8b4b3f4c..ed3a757a 100644 --- a/examples/components/Page/Form.jsx +++ b/examples/components/Page/Form.jsx @@ -1,54 +1,23 @@ export default { - definitions: { - aa: { - type: 'text', - name: 'jack', - value: 'ref value', - remark: '通过\\$ref引入的组件' - }, - bb: { - type: 'combo', - multiple: true, - multiLine: true, - remark: 'combo中的子项引入自身,实现嵌套的效果', - controls: [ - { - label: 'combo 1', - type: 'text', - name: 'key' - }, - { - label: 'combo 2', - name: 'value', - $ref: 'aa' - }, - { - name: 'children', - label: 'children', - $ref: 'bb' - } - ] - } - }, type: 'page', - title: '引用', - body: [ - { - type: 'form', - api: 'api/xxx', - actions: [], - controls: [ - { - label: 'text2', - $ref: 'aa', - name: 'ref1' - }, - { - label: 'combo', - $ref: 'bb', - name: 'ref2' - } - ] - } - ] + title: '表单页面', + body: { + type: 'form', + mode: 'horizontal', + title: '', + api: '/api/mock2/form/saveForm', + controls: [ + { + label: 'Name', + type: 'text', + name: 'name' + }, + + { + label: 'Email', + type: 'email', + name: 'email' + } + ] + } };