forked from huge/frontEnd/hugeOA

Mr Ke
2020-06-24 cb0a06de99bd629c2021e3d9b32fe8eae8c54879
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>
        }
      },