如何使用ui-sref在laravel中获取行内的html表行?

时间:2018-09-01 17:52:34

标签: html angular laravel html-table

我有角度的代码可以重定向到其他页面。

<div class="box-body no-padding">
  <table class="table table-condensed" id="example">
    <tr>
      <th>Month</th>
      <th>Amount</th>
    </tr>

    <tr ng-repeat="payment in allPayments">
      <td><a  ui-sref="/MoneyIn({month: payment.year})">{{payment.year}}</a></td>
      <td>{{payment.amt}}</td>
    </tr>

  </table>
</div>

单击月份时,它必须获取我单击的月份正下方的其他html表中的行数据。

<table class="table table-condensed">
    <tr>
        <th>Name</th>
        <th>Payment Date</th>
        <th>Payment Amount</th>
    </tr>

    <tr ng-repeat="payment in allPayments">
        <td>{{payment.name}}</td>
        <td>{{payment.payment_date}}</td>
        <td>{{payment.amt}}</td>
    </tr>
</table>

我希望上面的表格数据低于被点击的月份。

0 个答案:

没有答案