diff --git a/Fronts/pages/Questionnaires/components/Body.vue b/Fronts/pages/Questionnaires/components/Body.vue index 3536109266f65087540863be304188f45c6bdd17..b27e8a332f71881ccf072679494bb88916e91a03 100644 --- a/Fronts/pages/Questionnaires/components/Body.vue +++ b/Fronts/pages/Questionnaires/components/Body.vue @@ -6,37 +6,38 @@   {{this.Title}} +   {{item.questionnaireQuestion}}   - - - - -   @@ -50,12 +51,13 @@ export default { data() { return { - radioValue:'0', + radioValue: '0', Title: [], Question: [], id: '', optionValue: '', - Options: [] + Options: [], + text:[] } }, onLoad: function(option) { @@ -83,7 +85,7 @@ console.log(this.Question) this.Question.forEach((item) => { this.Title = item.questionnaireTitle; - this.Options = item.optionName.split(","); + this.Options.push(item.optionName.split(',')); }) console.log(this.Title) console.log(this.Options) @@ -94,24 +96,24 @@ }, post() { uni.showToast({ - title: '提交成功!', - }); - uni.request({ - url: 'http://localhost:5003/questionnaireres', - method: 'POST', - data: { - QuestionnaireId: 1, - QuestionnaireQuestionId:1, - OptionId:1, - optionValue:1 - }, - header: { - 'Content-Type': 'application/x-www-form-urlencoded' //自定义请求头信息 - }, - success: (res) => { - console.log(res.data); - } + title: '提交成功!', }); + // uni.request({ + // url: 'https://backendth.flymi.top/questionnaireres', + // method: 'POST', + // data: { + // QuestionnaireId: 1, + // QuestionnaireQuestionId: 1, + // OptionId: 1, + // optionValue: 1 + // }, + // header: { + // 'Content-Type': 'application/x-www-form-urlencoded' //自定义请求头信息 + // }, + // success: (res) => { + // console.log(res.data); + // } + // }); } @@ -120,6 +122,22 @@