|
@@ -2,6 +2,7 @@
|
|
<template>
|
|
<template>
|
|
<div
|
|
<div
|
|
class="Big-Book-prev-Textdes"
|
|
class="Big-Book-prev-Textdes"
|
|
|
|
+ :class="[isPhone ? 'textInput-phone' : '']"
|
|
v-if="
|
|
v-if="
|
|
curQue && judgeAnswer == 'standardAnswer'
|
|
curQue && judgeAnswer == 'standardAnswer'
|
|
? userErrList.length > 0
|
|
? userErrList.length > 0
|
|
@@ -111,7 +112,7 @@ import AnswerTitle from "../preview/components/AnswerTitle.vue";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: { Soundrecord, Audio, AudioLine, AnswerTitle },
|
|
components: { Soundrecord, Audio, AudioLine, AnswerTitle },
|
|
- props: ["curQue", "themeColor", "TaskModel", "judgeAnswer"],
|
|
|
|
|
|
+ props: ["curQue", "themeColor", "TaskModel", "judgeAnswer", "isPhone"],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
resArr: [],
|
|
resArr: [],
|
|
@@ -487,4 +488,12 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+.textInput-phone {
|
|
|
|
+ ul {
|
|
|
|
+ padding: 10px;
|
|
|
|
+ }
|
|
|
|
+ .play-btn {
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|