Merge pull request '调整返回值' (#124) from KingChan/forgeplus:chenjing into standalone_develop
This commit is contained in:
commit
5a69e604b9
|
@ -7,6 +7,7 @@ class SitePagesController < ApplicationController
|
|||
|
||||
def index
|
||||
pages = PageQuery.call(params,current_user)
|
||||
@total_count = pages.size
|
||||
@pages = paginate(pages)
|
||||
end
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
json.total_count @pages.total_count
|
||||
json.total_count @total_count
|
||||
json.pages @pages.each do |page|
|
||||
json.partial! 'info', locals: {page: page}
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue