index.jsx 1.1 KB
Newer Older
徐立's avatar
徐立 committed
1 2 3 4 5
/**
 * 入口文件
 * 传入Id
 * 移动端或web端识别值
 * form
钟是志's avatar
钟是志 committed
6
 * 通过ID生成表单
徐立's avatar
徐立 committed
7 8 9 10 11
 */
import React, { Component } from 'react';
import ZdyTable from '../Table';
import { connect } from 'dva';
@connect()
钟是志's avatar
钟是志 committed
12
export default class Index extends Component {
徐立's avatar
徐立 committed
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
    constructor(props){
        super(props)
        this.state = {
            data:''
        }
    }
    componentDidMount(){
        const {
            id,
            dispatch
        } = this.props
        dispatch({
            type: 'modileHome/getDetail',
            payload: {
                id,
            },
            callback: val => {
                this.setState({
                    data:val
                })
            }
        })
    }
    render() {
        const {
            form,
            get
        } = this.props
        const {
            data
        } = this.state
        return (
            <>
                {
                    data&&<ZdyTable
                            get={get}
                            postData={data}
                            form={form}
                        />
                }
            </>
        )
    }
}