|
@@ -33,7 +33,8 @@ export default {
|
|
|
switch (this.source) {
|
|
|
case 'exam':
|
|
|
// 严肃考试
|
|
|
- result = Object.assign({title, p2}, {topClass: 'kefu'}, {topStyle: 'background: none'}, {imgUrl: this.imgUrl});
|
|
|
+ result = Object.assign({title, p2}, {topClass: 'kefu'}, {topStyle: 'background: none'}, {imgUrl: this.imgUrl});
|
|
|
+ break;
|
|
|
case 'peixun':
|
|
|
// 企业培训
|
|
|
result = Object.assign({
|
|
@@ -64,6 +65,7 @@ export default {
|
|
|
title,
|
|
|
p2
|
|
|
}, {topClass: 'kefu_level2'}, {topStyle: `background: url(${this.bg2})`}, {imgUrl: this.imgUrl});
|
|
|
+ break;
|
|
|
}
|
|
|
return result;
|
|
|
},
|