|
@@ -537,9 +537,9 @@
|
|
|
v-html="
|
|
|
chapInfoList[courseType].chapterInfo[0].taskJson[taskCount]
|
|
|
.taskDetail
|
|
|
- ? chapInfoList[courseType].chapterInfo[0].taskJson[
|
|
|
+ ? renderedFormula(chapInfoList[courseType].chapterInfo[0].taskJson[
|
|
|
taskCount
|
|
|
- ].taskDetail
|
|
|
+ ].taskDetail)
|
|
|
: '暂无描述'
|
|
|
"
|
|
|
></div>
|
|
@@ -1551,7 +1551,7 @@
|
|
|
<!-- <div class="toolTitle">工具描述</div> -->
|
|
|
<!-- @click.stop="updateToolDetail(toolIndex, 2)" 点击开启修改-->
|
|
|
<div style="height:100%;"
|
|
|
- v-html="contentConvent(tool.toolDetail)"
|
|
|
+ v-html="renderedFormula(tool.toolDetail)"
|
|
|
v-if="toolDetailIndex != toolIndex"
|
|
|
></div>
|
|
|
<div v-else @click.stop="" style="height:100%;">
|
|
@@ -9663,7 +9663,7 @@
|
|
|
>
|
|
|
(多选题)
|
|
|
</div>
|
|
|
- <div>题目:{{ testJson.testJson[index1].teststitle }}</div>
|
|
|
+ <div>题目:<span v-html="renderedFormula(testJson.testJson[index1].teststitle)"></span></div>
|
|
|
</div>
|
|
|
<img
|
|
|
v-if="testJson.testJson[index1].img"
|
|
@@ -21561,7 +21561,7 @@ export default {
|
|
|
? c
|
|
|
.replaceAll(/\r\n/g, "<br/>")
|
|
|
.replaceAll(/\n/g, "<br/>")
|
|
|
- .replaceAll(/\s/g, "  ")
|
|
|
+ .replaceAll(/\s/g, " ")
|
|
|
: "";
|
|
|
};
|
|
|
},
|
|
@@ -22010,7 +22010,9 @@ export default {
|
|
|
overflow:hidden;
|
|
|
box-sizing:border-box;
|
|
|
}
|
|
|
-
|
|
|
+.pb_content >>> .katex {
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
.file {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|