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.
15 lines
445 B
15 lines
445 B
class Weapps::HomesController < Weapps::BaseController
|
|
def show
|
|
# banner
|
|
@carousels = WeappSettings::Carousel.only_online
|
|
# 广告
|
|
@advert = WeappSettings::Advert.only_online.first
|
|
|
|
# 热门实训
|
|
@shixuns = Shixun.where(homepage_show: true).includes(:tag_repertoires, :challenges).limit(4)
|
|
|
|
# 热门实践课程
|
|
@subjects = Subject.where(homepage_show: true).includes(:shixuns, :repertoire).limit(4)
|
|
|
|
end
|
|
end |