//pageinfo$scope.pageSize=10;$scope.currentType={{ current_type }};$scope.currentPage={{ json_encode(current_page) }};$scope.totalPage={{ json_encode(total_page) }};$scope.pages = [];//分页数组var viewCount = 7;var firstIdx = ($scope.currentPage<=parseInt(viewCount/2)+1?1:($scope.currentPage-parseInt(viewCount/2)));var lastIndex = (firstIdx+viewCount-1>=$scope.totalPage?$scope.totalPage:firstIdx+viewCount-1);if(lastIndex>=$scope.totalPage){ lastIndex = $scope.totalPage; firstIndex = lastIndex - viewCount+1;}$scope.lastPage = lastIndex;if(firstIdx<1){ firstIdx=1;}while(firstIdx<=lastIndex&&$scope.totalPage>1){ $scope.pages.push(firstIdx); firstIdx++;}
时间: 2024-10-10 23:21:10