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
/**
* 入口文件
* 传入Id
* 移动端或web端识别值
* form
* 通过ID生成表单
*/
import React, { Component } from 'react';
import ZdyTable from '../Table';
import { connect } from 'dva';
@connect()
export default class Index extends Component {
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
let routerState = {
history: this.props?.history,
location: this.props?.location,
match: this.props?.match,
computedMatch: this.props?.computedMatch,
route: this.props?.route
}
return (
<>
{
data&&<ZdyTable
get={get}
postData={data}
form={form}
routerState={routerState}
/>
}
</>
)
}
}