1、<label class="col-md-7 col-sm-7 control-label">公积金管理部名称:</label>
<div class="col-md-3 col-sm-3 form-inline">
<input type="text" class="form-control" >查询</button>
</div>


2、 /************查询列表****************/
$scope.queryList=function (){
$scope.transactionsFund.page=1;
$scope.transactionsFund.size=20;
DataCenter.find("TransactionsFund", $scope.transactionsFund);
}

/************列表返回*******************/

DataCenter.addEventListener("TransactionsFundList", function(e){
console.log("XXXXXXXXXXXXXXXXXXX"+e.data);
$scope.transactionsFundList = e.data.list;
$scope.pages = e.data.pages;
$scope.page = e.data.pageNum;
$scope.size= e.data.size;
$scope.total= e.data.total;
$scope.$apply();
});

 

相关文章:

  • 2021-08-04
  • 2021-07-12
  • 2021-08-09
  • 2021-10-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-12
  • 2021-08-06
  • 2022-03-08
  • 2021-09-02
相关资源
相似解决方案