我有角度的代码可以重定向到其他页面。
<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>
我希望上面的表格数据低于被点击的月份。