1.1.6 • Published 4 years ago

helper-form v1.1.6

Weekly downloads
19
License
MIT
Repository
github
Last release
4 years ago

helper-form

🌰

construtor(props){
    this.FormItem = CusFormItem(props.form, [
        {
            type: 'Input',
            props: {
            placeholder: '请输入',
            },
            label: '活动名称',
            id: 'promotion_name',
        },
        {
            type: 'Select',
            label: '活动状态',
            props: [
                { label: '全部', value: '' },
                { label: '助力中', value: 1 },
                { label: '助力成功', value: 2 },
                { label: '已结束', value: 3 },
            ],
        },
        {
            label: '购买时间',
            type: 'RangePicker',
            props: { allowClear: false },
            config: {
                initialValue: [
                    moment()
                    .subtract('months', 1)
                    .startOf('day'),
                    moment().endOf('day'),
                ],
            },
            id: ['start_time', 'end_time'],
        },
        {
            type: 'Button',
            label: '中奖记录',
            props: {
            type: 'primary',
            onClick: () => {
                // TODO...
            },
            },
        },
    ]);
}
getId = async ({params,extendsParams}) => {
    const stuId = await this.queryId('liveClass/getStuSimpleList', params.extendsParams[0]);
    return { student_id: stuId,  };
};
<CusFormItem
    actionType="liveClass/getIntentConsumeList"
    beforeCallback={this.getId}
    table={{
        columns: this.columns.map(col => ({ align: 'center', ...col })),
        scroll: { x: 2400 },
        dataSource: consumeList.result || [],
        loading,
        pagination: {
        total: consumeList.total_size || 0,
        },
    }}
/>
1.1.6

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.0.19

5 years ago

1.0.18

5 years ago

1.0.16

5 years ago

1.0.15

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.8

5 years ago

1.0.6

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago