利用angular做一个嵌套表格进行统计

图片说明
1、表格是一个html页面

  <table id="orderTable " class=" tableHelper table table-striped table-condensed table-bordered table-hover">
                    <thead>
                        <tr>
                            <th>编号</th>
                            <th>姓名</th>
                            <th>注册时间</th>
                            <th>功能有效期</th>
                            <th>状态</th>
                            <th> </th>
                            <th> </th>
                        </tr>

                    </thead>
                                        ……
    </table>                                    

2、主要逻辑是写在controller里面
3、具体要实现的是通过传入一个时间,进行相应的月份或者日统计,这里就麻烦大佬教我写月统计(本人前端小白,第一次上手angular,希望有大佬能教)

https://blog.csdn.net/qq_36279445/article/details/78643548