mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-14 21:36:42 +08:00
提交
This commit is contained in:
@@ -83,7 +83,14 @@ export default {
|
||||
) {
|
||||
return this.fileBaseUrl + this.course.image;
|
||||
}
|
||||
else if (this.course.coverImg == "" || this.course.courseImage == "" || this.course.image == "") {
|
||||
else if (
|
||||
this.course &&
|
||||
this.course.images &&
|
||||
this.course.images != ""
|
||||
) {
|
||||
return this.fileBaseUrl + this.course.images;
|
||||
}
|
||||
else if (this.course.coverImg == "" || this.course.courseImage == "" || this.course.image == "" || this.course.images == "") {
|
||||
this.isShow = true;
|
||||
return this.webBaseUrl + "/images/bgimg/course.png";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user