Commit dbdf4dbb authored by Mac's avatar Mac

1

parent 9156d639
...@@ -457,15 +457,18 @@ ...@@ -457,15 +457,18 @@
this.objOption.CourseSubject = res.Data.CourseSubject; this.objOption.CourseSubject = res.Data.CourseSubject;
this.objOption.B2BIcon = res.Data.B2BIcon ; this.objOption.B2BIcon = res.Data.B2BIcon ;
this.objOption.B2BBackground = res.Data.B2BBackground; this.objOption.B2BBackground = res.Data.B2BBackground;
this.objOption.CourseEmphasis = res.Data.CourseEmphasis; this.CourseEmphasis=[]
if(this.objOption.CourseEmphasis && this.objOption.CourseEmphasis!=''){ setTimeout(()=>{//Todo 暂时不知道什么原因 偶尔会出现2个 所以加了一个延迟
this.CourseEmphasis=this.objOption.CourseEmphasis.split(",") if(res.Data.CourseEmphasis && res.Data.CourseEmphasis!=''){
}else{ this.CourseEmphasis=res.Data.CourseEmphasis.split(",").map(Number)
this.CourseEmphasis=[]
this.keynoteList.map((x)=>{ }else{
this.CourseEmphasis.push(x.Id) this.keynoteList.map((x)=>{
}) this.CourseEmphasis.push(x.Id)
} })
}
},100)
if (res.Data.StepPriceList && res.Data.StepPriceList.length > 0) { if (res.Data.StepPriceList && res.Data.StepPriceList.length > 0) {
this.ladderPriceList = res.Data.StepPriceList; this.ladderPriceList = res.Data.StepPriceList;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment