forked from huge/frontEnd/hugeOA

Mr Ke
2020-09-04 0be3ac0f2f83c1b58249d43850a0e4b4f531a8db
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>
        }
      },