Commit dbdf4dbb authored by Mac's avatar Mac

1

parent 9156d639
......@@ -457,15 +457,18 @@
this.objOption.CourseSubject = res.Data.CourseSubject;
this.objOption.B2BIcon = res.Data.B2BIcon ;
this.objOption.B2BBackground = res.Data.B2BBackground;
this.objOption.CourseEmphasis = res.Data.CourseEmphasis;
if(this.objOption.CourseEmphasis && this.objOption.CourseEmphasis!=''){
this.CourseEmphasis=this.objOption.CourseEmphasis.split(",")
}else{
this.CourseEmphasis=[]
this.keynoteList.map((x)=>{
this.CourseEmphasis.push(x.Id)
})
}
this.CourseEmphasis=[]
setTimeout(()=>{//Todo 暂时不知道什么原因 偶尔会出现2个 所以加了一个延迟
if(res.Data.CourseEmphasis && res.Data.CourseEmphasis!=''){
this.CourseEmphasis=res.Data.CourseEmphasis.split(",").map(Number)
}else{
this.keynoteList.map((x)=>{
this.CourseEmphasis.push(x.Id)
})
}
},100)
if (res.Data.StepPriceList && res.Data.StepPriceList.length > 0) {
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