随访修改

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