Compare commits
No commits in common. "7360be172676cbf64e5b15c0539d01526af8e15f" and "c18587b4f55cb8b7ea4caedfcb3675411635a6ae" have entirely different histories.
7360be1726
...
c18587b4f5
|
@ -158,10 +158,12 @@
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type === 'class' && !question.TypeValue"
|
v-if="question.Type === 'class' && !question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
/>
|
/>
|
||||||
<el-radio-group
|
<el-radio-group
|
||||||
v-if="question.Type === 'class' && question.TypeValue"
|
v-if="question.Type === 'class' && question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
>
|
>
|
||||||
<el-radio
|
<el-radio
|
||||||
v-for="item of question.TypeValue.split('|')"
|
v-for="item of question.TypeValue.split('|')"
|
||||||
|
|
|
@ -99,10 +99,12 @@
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type === 'class' && !question.TypeValue"
|
v-if="question.Type === 'class' && !question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
/>
|
/>
|
||||||
<el-radio-group
|
<el-radio-group
|
||||||
v-if="question.Type === 'class' && question.TypeValue"
|
v-if="question.Type === 'class' && question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
>
|
>
|
||||||
<el-radio
|
<el-radio
|
||||||
v-for="item of question.TypeValue.split('|')"
|
v-for="item of question.TypeValue.split('|')"
|
||||||
|
|
|
@ -200,10 +200,12 @@
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type === 'class' && !question.TypeValue"
|
v-if="question.Type === 'class' && !question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
/>
|
/>
|
||||||
<el-radio-group
|
<el-radio-group
|
||||||
v-if="question.Type === 'class' && question.TypeValue"
|
v-if="question.Type === 'class' && question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
>
|
>
|
||||||
<el-radio
|
<el-radio
|
||||||
v-for="item of question.TypeValue.split('|')"
|
v-for="item of question.TypeValue.split('|')"
|
||||||
|
|
|
@ -105,10 +105,12 @@
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type === 'class' && !question.TypeValue"
|
v-if="question.Type === 'class' && !question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
/>
|
/>
|
||||||
<el-radio-group
|
<el-radio-group
|
||||||
v-if="question.Type === 'class' && question.TypeValue"
|
v-if="question.Type === 'class' && question.TypeValue"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
|
disabled
|
||||||
>
|
>
|
||||||
<el-radio
|
<el-radio
|
||||||
v-for="item of question.TypeValue.split('|')"
|
v-for="item of question.TypeValue.split('|')"
|
||||||
|
|
Loading…
Reference in New Issue