You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class Weapps::SubjectsController < Weapps::BaseController
|
|
before_action :require_login
|
|
|
|
# 首页
|
|
def index
|
|
subjects = Weapps::SubjectQuery.call(current_laboratory, params)
|
|
@subject_count = subjects.map(&:id).size
|
|
@subjects = paginate subjects
|
|
end
|
|
|
|
# 详情
|
|
def show
|
|
|
|
end
|
|
|
|
end
|