UNPKG

780 BJavaScriptView Raw
1export default function getConfig() {
2 return {
3 form: {
4 inline: false,
5 labelPosition: 'right',
6 labelWidth: '125px',
7 disabled: false,
8 size: undefined,
9 },
10 row: {
11 show: true,
12 gutter: 0,
13 },
14 submitBtn: {
15 type: 'primary',
16 loading: false,
17 disabled: false,
18 innerText: '提交',
19 show: true,
20 col: undefined,
21 click: undefined,
22 },
23 resetBtn: {
24 type: 'default',
25 loading: false,
26 disabled: false,
27 innerText: '重置',
28 show: false,
29 col: undefined,
30 click: undefined,
31 },
32 };
33}