Commit 9ba7d955 authored by youjie's avatar youjie

no message

parent 37bab710
...@@ -193,16 +193,18 @@ ...@@ -193,16 +193,18 @@
postMsg.push(item); postMsg.push(item);
}) })
} for(let i=0;i<dataList.length;i++){
for(let i=0;i<dataList.length;i++){ if(dataList[i].SurveyType==2||dataList[i].SurveyType==3){
if(dataList[i].SurveyType==2||dataList[i].SurveyType==3){ let filter = dataList[i].SurveyOptionsList.filter(x=> {return x.IsCheck=='1'})
let filter = dataList[i].SurveyOptionsList.filter(x=> {return x.IsCheck=='1'}) if(filter.length==0){
if(filter.length==0){ layer.msg("请选择"+dataList[i].Title)
layer.msg("请选择"+dataList[i].Title) return
return }
} }
} }
} }
postMsg.forEach(item=>{ postMsg.forEach(item=>{
if(item.SurveyType==2||item.SurveyType==3){ if(item.SurveyType==2||item.SurveyType==3){
item.ScoreNum = 0 item.ScoreNum = 0
......
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