tableQuestionId为空时增加判断
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
ef489552ea
commit
0aaf2f3edb
|
@ -85,7 +85,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-select>
|
</el-select>
|
||||||
<span
|
<span
|
||||||
v-else-if="questionForm[scope.row.QuestionId] instanceof Array && scope.row.Type === 'select' || scope.row.Type === 'radio'">
|
v-else-if="questionForm[scope.row.QuestionId] instanceof Array && (scope.row.Type === 'select' || scope.row.Type === 'radio')">
|
||||||
{{ questionForm[scope.row.QuestionId][scope.row.xfIndex][scope.row.TableQuestionId] }}
|
{{ questionForm[scope.row.QuestionId][scope.row.xfIndex][scope.row.TableQuestionId] }}
|
||||||
</span>
|
</span>
|
||||||
<el-select
|
<el-select
|
||||||
|
@ -615,6 +615,7 @@ export default {
|
||||||
taskQuestions.forEach(item => {
|
taskQuestions.forEach(item => {
|
||||||
this.$set(this.taskQuestions, this.taskQuestions.length, item)
|
this.$set(this.taskQuestions, this.taskQuestions.length, item)
|
||||||
})
|
})
|
||||||
|
console.log(this.taskQuestions,'this.taskQuestions')
|
||||||
this.visitTaskList = res.Result.VisitTaskList
|
this.visitTaskList = res.Result.VisitTaskList
|
||||||
this.InitVisitTaskQuestionForm()
|
this.InitVisitTaskQuestionForm()
|
||||||
this.handleResize()
|
this.handleResize()
|
||||||
|
|
Loading…
Reference in New Issue