1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| import { FormSchema } from '@/components/Form';
|
| export const step1Schemas: FormSchema[] = [
| {
| field: 'account',
| component: 'Select',
| label: '付款账户',
| required: true,
| defaultValue: '1',
| componentProps: {
| options: [
| {
| label: 'anncwb@126.com',
| value: '1',
| },
| ],
| },
| colProps: {
| span: 24,
| },
| },
| {
| field: 'fac',
| label: '收款账户',
| required: true,
| defaultValue: 'test@example.com',
| slot: 'fac',
| colProps: {
| span: 24,
| },
| },
| {
| field: 'pay',
| component: 'Input',
| label: '',
| defaultValue: 'zfb',
| show: false,
| },
| {
| field: 'payeeName',
| component: 'Input',
| label: '收款人姓名',
| defaultValue: 'Vben',
| required: true,
| colProps: {
| span: 24,
| },
| },
| {
| field: 'money',
| component: 'Input',
| label: '转账金额',
| defaultValue: '500',
| required: true,
| renderComponentContent: () => {
| return {
| prefix: () => '¥',
| };
| },
| colProps: {
| span: 24,
| },
| },
| ];
|
| export const step2Schemas: FormSchema[] = [
| {
| field: 'pwd',
| component: 'InputPassword',
| label: '支付密码',
| required: true,
| defaultValue: '123456',
| colProps: {
| span: 24,
| },
| },
| ];
|
|