src/components/oa/merits/meritsOverview/index.jsx
@@ -56,6 +56,11 @@ linkDetail = (item) => { let { userId, countMonth } = item; history.push(`/merits/meritsOverview/meritsDetail/${userId}/false/${countMonth}`) } linkScore = (item) => { let { userId, countMonth } = item; history.push(`/merits/meritsOverview/meritsDetail/${userId}/true/${countMonth}`) } @@ -73,6 +78,8 @@ title: '操作', dataIndex: 'operation', render: (cur, item) => { return <Row> <a onClick={() => this.linkDetail(item)}>详情</a> <span> | </span> <a onClick={() => this.linkScore(item)}>评分</a> </Row> } },