123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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',
- component: 'InputGroup',
- 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,
- },
- },
- ];
|