Commit 8c9ad1f5 authored by liboyang's avatar liboyang

制证信息管理根据打印状态查询

parent a13b24bd
...@@ -59,6 +59,9 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't ...@@ -59,6 +59,9 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
if(packageType==''){ if(packageType==''){
packageType=-1; packageType=-1;
} }
if($scope.paginationConf.currentPage==0){
$scope.paginationConf.currentPage=1
}
HttpService.getPackageData($scope.uploadNo,$scope.idCard,$scope.oldPackageNo,$scope.newPackageNo,$scope.sljg, HttpService.getPackageData($scope.uploadNo,$scope.idCard,$scope.oldPackageNo,$scope.newPackageNo,$scope.sljg,
cardType,packageType,date,$scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage,function(data) { cardType,packageType,date,$scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage,function(data) {
$scope.paginationConf.totalItems=data.total; $scope.paginationConf.totalItems=data.total;
......
...@@ -92,6 +92,7 @@ ...@@ -92,6 +92,7 @@
<th>记录数</th> <th>记录数</th>
<th>生成时间</th> <th>生成时间</th>
<th>新包号</th> <th>新包号</th>
<th>记录状态</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
...@@ -102,6 +103,8 @@ ...@@ -102,6 +103,8 @@
<td>{{item.recordNumber}}</td> <td>{{item.recordNumber}}</td>
<td>{{item.createDate | myDateFilter}}</td> <td>{{item.createDate | myDateFilter}}</td>
<td>{{item.newFileName}}</td> <td>{{item.newFileName}}</td>
<td ng-if="item">已删除</td>
<td ng-if="item">未删除</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment