xx

 
 
   
 
  charset="utf-8" />
  </span><span class="html-tag">
 
 
 
   
  ng-app="myApp" ng-controller="myCtrl">
 
 

商品列表

  placeholder="商品名查询" ng-model="search" />
 
  ="">--选择排序--
  ="price">价格升序
  ="-price">价格降序
  ="num">数量升序
  ="-num">数量降序
 

  border="1px solid blue" cellpadding="10" cellspacing="0"> ng-repeat="p in products | filter:{name:search} | orderBy:sel ">
 
 
  商品名
  商品价格
  商品数量
  商品日期
 
 
 
 
  {{p.name}}
  {{p.price | currency:"¥"}}
  {{p.num}}
  {{p.date | date:"yyyy-MM-dd hh:mm:ss"}}
 
 
 
   
 
   
 
   
 

你可能感兴趣的:(xx)