模糊查找排序

来源:互联网 发布:软件竣工总结报告 编辑:程序博客网 时间:2024/06/08 08:56

模糊查找

<input type="text" placeholder="用户名搜索" ng-model="yhu" />

<tr ng-repeat="s in shuzu|filter:{'name':yhu}">


排序

$scope.title="state";
$scope.desc=false;


<tr style="background-color: #787876;">
<td><input type="checkbox" ng-model="isck" ng-change="ckAll()" /></td>
<td ng-click="title='gname';desc=!desc">商品名称</td>
<td ng-click="title='address';desc=!desc">商品产地</td>
<td ng-click="title='price';desc=!desc">商品价格</td>
<td ng-click="title='regDate';desc=!desc">生产日期</td>
<td>状态</td>
<td>操作</td>
</tr>

<tr style="border: 1px;" ng-repeat="good in goods|orderBy:title:desc">

原创粉丝点击