|
@@ -316,7 +316,7 @@
|
|
<img src="../../assets/icon/newIcon/allScreen.png" alt />
|
|
<img src="../../assets/icon/newIcon/allScreen.png" alt />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="navListItem" v-if="vitem.type == 8">
|
|
|
|
|
|
+ <div class="navListItem" v-if="vitem.type == 8 || vitem.type == 14">
|
|
<div @click="doUrl(vitem.url, vindex)" class="navText"
|
|
<div @click="doUrl(vitem.url, vindex)" class="navText"
|
|
:class="isClickNav == vindex ? 'isClickNav' : ''">
|
|
:class="isClickNav == vindex ? 'isClickNav' : ''">
|
|
{{ vitem.title ? vitem.title : vitem.url }}
|
|
{{ vitem.title ? vitem.title : vitem.url }}
|
|
@@ -6161,7 +6161,7 @@
|
|
<div>
|
|
<div>
|
|
<div class="sentenBox">
|
|
<div class="sentenBox">
|
|
<div v-for="(st, stIndex) in sentenceList" :key="stIndex" style="padding-bottom: 20px">
|
|
<div v-for="(st, stIndex) in sentenceList" :key="stIndex" style="padding-bottom: 20px">
|
|
- <div style="padding: 15px 0 10px 20px">请选择正确顺序</div>
|
|
|
|
|
|
+ <div style="padding: 15px 0 10px 20px" class="sentenceTitle" :index="stIndex+1">请选择正确顺序</div>
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardBox">
|
|
<div class="cardBox">
|
|
<div v-for="(r, rIndex) in st.chooseSenList" :key="rIndex" @click="returnCard(r, stIndex, rIndex)">
|
|
<div v-for="(r, rIndex) in st.chooseSenList" :key="rIndex" @click="returnCard(r, stIndex, rIndex)">
|
|
@@ -6212,7 +6212,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="sentenBox">
|
|
<div class="sentenBox">
|
|
<div v-for="(st, stIndex) in sentenceList" :key="stIndex" style="padding-bottom: 20px">
|
|
<div v-for="(st, stIndex) in sentenceList" :key="stIndex" style="padding-bottom: 20px">
|
|
- <div style="padding: 15px 0 10px 20px">请选择正确顺序</div>
|
|
|
|
|
|
+ <div style="padding: 15px 0 10px 20px" class="sentenceTitle" :index="stIndex+1">请选择正确顺序</div>
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardBox">
|
|
<div class="cardBox">
|
|
<div v-for="(r, rIndex) in st.chooseSenList" :key="rIndex" @click="returnCard(r, stIndex, rIndex)">
|
|
<div v-for="(r, rIndex) in st.chooseSenList" :key="rIndex" @click="returnCard(r, stIndex, rIndex)">
|
|
@@ -10394,7 +10394,7 @@ export default {
|
|
for (var j = 0; j < c.length; j++) {
|
|
for (var j = 0; j < c.length; j++) {
|
|
if (c[j].type == 7) {
|
|
if (c[j].type == 7) {
|
|
this.chapToolList[i].push(c[j]);
|
|
this.chapToolList[i].push(c[j]);
|
|
- } else if (c[j].type == 8) {
|
|
|
|
|
|
+ } else if (c[j].type == 8 || c[j].type == 14) {
|
|
this.lineList[i].push(c[j]);
|
|
this.lineList[i].push(c[j]);
|
|
} else if (c[j].type == 6) {
|
|
} else if (c[j].type == 6) {
|
|
this.textList[i].push(c[j]);
|
|
this.textList[i].push(c[j]);
|
|
@@ -10462,7 +10462,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
- if (_chapterData[this.taskCount][0].type == 8) {
|
|
|
|
|
|
+ if (_chapterData[this.taskCount][0].type == 8 || _chapterData[this.taskCount][0].type == 14) {
|
|
this.showType = 2;
|
|
this.showType = 2;
|
|
if (
|
|
if (
|
|
_url.indexOf("https://") == -1 &&
|
|
_url.indexOf("https://") == -1 &&
|
|
@@ -10581,7 +10581,7 @@ export default {
|
|
for (var j = 0; j < c.length; j++) {
|
|
for (var j = 0; j < c.length; j++) {
|
|
if (c[j].type == 7) {
|
|
if (c[j].type == 7) {
|
|
this.chapToolList[i].push(c[j]);
|
|
this.chapToolList[i].push(c[j]);
|
|
- } else if (c[j].type == 8) {
|
|
|
|
|
|
+ } else if (c[j].type == 8 || c[j].type == 14) {
|
|
this.lineList[i].push(c[j]);
|
|
this.lineList[i].push(c[j]);
|
|
} else if (c[j].type == 6) {
|
|
} else if (c[j].type == 6) {
|
|
this.textList[i].push(c[j]);
|
|
this.textList[i].push(c[j]);
|
|
@@ -10612,7 +10612,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
- if (_chapterData[this.taskCount][0].type == 8) {
|
|
|
|
|
|
+ if (_chapterData[this.taskCount][0].type == 8 || _chapterData[this.taskCount][0].type == 14) {
|
|
this.showType = 2;
|
|
this.showType = 2;
|
|
if (
|
|
if (
|
|
_url.indexOf("https://") == -1 &&
|
|
_url.indexOf("https://") == -1 &&
|
|
@@ -17388,4 +17388,25 @@ ol {
|
|
.selectBox>>>.el-input__icon {
|
|
.selectBox>>>.el-input__icon {
|
|
line-height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.sentenceTitle{
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.sentenceTitle::before{
|
|
|
|
+ content:attr(index);
|
|
|
|
+ background: #3681fc;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ color: #fff;
|
|
|
|
+ width: 25px;
|
|
|
|
+ height: 25px;
|
|
|
|
+ min-width: 25px;
|
|
|
|
+ min-height: 25px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ line-height: 25px;
|
|
|
|
+ margin-right: 5px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|