|
@@ -27,16 +27,15 @@ function header(props) {
|
27
|
27
|
// 查询详情
|
28
|
28
|
|
29
|
29
|
|
30
|
|
-
|
31
|
|
- const getDetail = orgId => {
|
32
|
|
- request({
|
33
|
|
- ...apis.fund.accountDetail,
|
34
|
|
- urlData: { id: orgId },
|
35
|
|
- }).then(data => {
|
36
|
|
- console.log(data)
|
37
|
|
- setNewsData(data)
|
38
|
|
- })
|
39
|
|
- }
|
|
30
|
+ // const getDetail = orgId => {
|
|
31
|
+ // request({
|
|
32
|
+ // ...apis.fund.accountDetail,
|
|
33
|
+ // urlData: { id: orgId },
|
|
34
|
+ // }).then(data => {
|
|
35
|
+ // console.log(data)
|
|
36
|
+ // setNewsData(data)
|
|
37
|
+ // })
|
|
38
|
+ // }
|
40
|
39
|
const [tab, changeTab] = useState('basic')
|
41
|
40
|
|
42
|
41
|
const fields = [
|
|
@@ -95,11 +94,11 @@ function header(props) {
|
95
|
94
|
},
|
96
|
95
|
]
|
97
|
96
|
|
98
|
|
- const getDetail = (row) => {
|
|
97
|
+ const getDetail = row => {
|
99
|
98
|
router.push({
|
100
|
99
|
pathname: '/fundManagement/AccountDetail',
|
101
|
100
|
query: {
|
102
|
|
- id: row.orgId
|
|
101
|
+ id: row.orgId,
|
103
|
102
|
},
|
104
|
103
|
});
|
105
|
104
|
}
|
|
@@ -136,4 +135,4 @@ function header(props) {
|
136
|
135
|
)
|
137
|
136
|
}
|
138
|
137
|
|
139
|
|
-export default header
|
|
138
|
+export default header
|