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.
12 lines
356 B
12 lines
356 B
5 years ago
|
class Weapps::BannersController < Weapps::BaseController
|
||
|
|
||
|
def index
|
||
|
shixun = WeappSettings::ShixunBanner.first
|
||
|
course = WeappSettings::CourseBanner.first
|
||
|
|
||
|
render json: {
|
||
|
shixun_img: shixun ? Util::FileManage.source_disk_file_url(shixun) : '',
|
||
|
course_img: course ? Util::FileManage.source_disk_file_url(course) : ''
|
||
|
}
|
||
|
end
|
||
|
end
|