forked from huge/frontEnd/hugeOA

...
liyj
2020-06-24 7af09e42b49cd18f160c19297f47c4622b1eedc3
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>
        }
      },