Compare commits
No commits in common. "3b7271d3a8a992e3c613456ae445b6bca8e9b661" and "7e8af2b4e51735dccaaeb77a7569cceea1126620" have entirely different histories.
3b7271d3a8
...
7e8af2b4e5
|
@ -70,21 +70,53 @@
|
||||||
width="150"
|
width="150"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].QuestionType === 1">
|
<div
|
||||||
<span v-if="scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].DictionaryCode">
|
v-if="
|
||||||
{{ $fd(scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].DictionaryCode,parseInt(scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Answer))
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
}}
|
.QuestionType === 1
|
||||||
</span>
|
"
|
||||||
<span v-else>
|
>
|
||||||
{{ scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Answer }}
|
<span
|
||||||
</span>
|
v-if="
|
||||||
<span v-if="scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Unit">{{ $fd('ValueUnit', parseInt(scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Unit)) }}</span>
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
|
.DictionaryCode
|
||||||
|
"
|
||||||
|
>{{
|
||||||
|
$fd(
|
||||||
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[
|
||||||
|
i
|
||||||
|
].DictionaryCode,
|
||||||
|
parseInt(
|
||||||
|
scope.row.VisitTaskInfoList[j.index]
|
||||||
|
.JudgeQuestionList[i].Answer
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}}</span>
|
||||||
|
<span v-else>{{
|
||||||
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
|
.Answer
|
||||||
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].QuestionType === 2">
|
<div
|
||||||
<div v-if="scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Answer">
|
v-else-if="
|
||||||
<span>
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
{{ $fd("YesOrNo",scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Answer) }}
|
.QuestionType === 2
|
||||||
</span>
|
"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
|
.Answer
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<span>{{
|
||||||
|
$fd(
|
||||||
|
"YesOrNo",
|
||||||
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[
|
||||||
|
i
|
||||||
|
].Answer
|
||||||
|
)
|
||||||
|
}}</span>
|
||||||
<!-- 查看详情 -->
|
<!-- 查看详情 -->
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -111,7 +143,10 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{ scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i].Answer }}
|
{{
|
||||||
|
scope.row.VisitTaskInfoList[j.index].JudgeQuestionList[i]
|
||||||
|
.Answer
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
Loading…
Reference in New Issue