|
@@ -279,7 +279,9 @@ export default {
|
|
// 大题描述
|
|
// 大题描述
|
|
const detailDescriptionGroups = getElementsByIds(
|
|
const detailDescriptionGroups = getElementsByIds(
|
|
detail.description
|
|
detail.description
|
|
- ).map((item) => getGroupData({ elements: [item] }));
|
|
|
|
|
|
+ ).map((item) =>
|
|
|
|
+ getGroupData({ elements: [item], type: "detail-description" })
|
|
|
|
+ );
|
|
groups.push(...detailDescriptionGroups);
|
|
groups.push(...detailDescriptionGroups);
|
|
// 小题
|
|
// 小题
|
|
detail.questions.forEach((question) => {
|
|
detail.questions.forEach((question) => {
|
|
@@ -500,9 +502,6 @@ export default {
|
|
return getRichTextModel({
|
|
return getRichTextModel({
|
|
styles: { width: "100%", fontWeight: 900 },
|
|
styles: { width: "100%", fontWeight: 900 },
|
|
content,
|
|
content,
|
|
- classNames: this.configModalForm.showDetailScoreTable
|
|
|
|
- ? "is-detail-title"
|
|
|
|
- : "",
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
parseTitleOption(richJson, noVal, contType = "content") {
|
|
parseTitleOption(richJson, noVal, contType = "content") {
|