随访修改

This commit is contained in:
shidongli 2024-04-12 09:14:41 +08:00
parent 161811ab96
commit 34c0f4c83d

View File

@ -191,7 +191,7 @@
class="tk"
>
<el-input
v-model="item.optionAnswer"
v-model="item.fillBlanksAnswer"
placeholder="请输入答案"
type="textarea"
/>
@ -205,7 +205,7 @@
<el-date-picker
@change="timepicker($event, index)"
clearable
v-model="item.optionAnswer"
v-model="item.fillBlanksAnswer"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择日期"
@ -220,7 +220,7 @@
<el-time-select
@change="timepickerselect($event, index)"
clearable
v-model="item.optionAnswer"
v-model="item.fillBlanksAnswer"
:picker-options="{
start: '08:30',
step: '00:30',
@ -337,12 +337,12 @@ export default {
methods: {
//
timepicker(e, index) {
this.questiondata.questionSubjectList[index].optionAnswer = e
this.questiondata.questionSubjectList[index].fillBlanksAnswer = e
},
//
timepickerselect(e, index) {
this.questiondata.questionSubjectList[index].optionAnswer = e
this.questiondata.questionSubjectList[index].fillBlanksAnswer = e
},
radioGroupChange(e, item) {
},