|
@@ -80,9 +80,14 @@
|
|
|
margin: 35px 0 20px;
|
|
|
"
|
|
|
>
|
|
|
- {{ worksDialogCon2.course }}
|
|
|
+ {{ worksDialogCon2.course }}
|
|
|
</div>
|
|
|
- <div v-for="i in workList" :key="i.id" v-if="isStage(i.taskList)" class="stageCon">
|
|
|
+ <div
|
|
|
+ v-for="i in workList"
|
|
|
+ :key="i.id"
|
|
|
+ v-if="isStage(i.taskList)"
|
|
|
+ class="stageCon"
|
|
|
+ >
|
|
|
<div class="stageTit">
|
|
|
第{{ i.id * 1 + 1 }}阶段<span v-if="i.name">:{{ i.name }}</span>
|
|
|
</div>
|
|
@@ -513,7 +518,7 @@
|
|
|
style="
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
- max-width: 100%;
|
|
|
+ width: 100%;
|
|
|
min-width: 48%;
|
|
|
"
|
|
|
>
|
|
@@ -567,16 +572,22 @@
|
|
|
flex-direction: column;
|
|
|
margin-left: 10px;
|
|
|
"
|
|
|
- v-if="l.rate.content || l.rate.comment"
|
|
|
+ v-if="l.rate.content"
|
|
|
>
|
|
|
<div class="taskScoConTit">评语</div>
|
|
|
<div class="WorkCon">
|
|
|
- {{ l.rate.content || l.rate.comment }}
|
|
|
+ {{ l.rate.content }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 思维导图 -->
|
|
|
+ <div class="taskTitInd">
|
|
|
+ <div></div>
|
|
|
+ <span>任务评价体系</span>
|
|
|
+ </div>
|
|
|
+ <exjsmind :treeData="k.treeData" :keyL="(k.task).toString()"></exjsmind>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="display: flex;justify-content: flex-end;width: 100%;">
|
|
@@ -592,9 +603,13 @@
|
|
|
import html2canvas from "html2canvas";
|
|
|
import jspdf from "jspdf";
|
|
|
import JSZip from "jszip";
|
|
|
+import exjsmind from "./exjsmind";
|
|
|
|
|
|
export default {
|
|
|
props: ["uid", "cid", "worksDialog", "worksDialogCon", "digNum"],
|
|
|
+ components: {
|
|
|
+ exjsmind
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
workList: [],
|
|
@@ -631,25 +646,25 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
isStage() {
|
|
|
- return function (val) {
|
|
|
- let isShow = false
|
|
|
-
|
|
|
- val.forEach(e=>{
|
|
|
- e.toolEList.forEach(i=>{
|
|
|
+ return function(val) {
|
|
|
+ let isShow = false;
|
|
|
+
|
|
|
+ val.forEach(e => {
|
|
|
+ e.toolEList.forEach(i => {
|
|
|
if (i.content.length) {
|
|
|
- isShow = true
|
|
|
+ isShow = true;
|
|
|
}
|
|
|
- })
|
|
|
- })
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
return isShow;
|
|
|
};
|
|
|
},
|
|
|
isTask() {
|
|
|
- return function (val) {
|
|
|
+ return function(val) {
|
|
|
let isShow = false;
|
|
|
|
|
|
- val.forEach((e) => {
|
|
|
+ val.forEach(e => {
|
|
|
if (e.content.length) {
|
|
|
isShow = true;
|
|
|
}
|
|
@@ -667,7 +682,6 @@ export default {
|
|
|
delete valT.comment;
|
|
|
|
|
|
let data = Object.values(valT);
|
|
|
- console.log("data", data);
|
|
|
|
|
|
let new1 = data.reduce(function(pre, next, index) {
|
|
|
return pre + next * 1;
|
|
@@ -808,7 +822,12 @@ export default {
|
|
|
task: kin,
|
|
|
taskTit: k.task ? k.task : "",
|
|
|
taskDetail: k.taskDetail,
|
|
|
- toolEList: k.toolChoose
|
|
|
+ toolEList: k.toolChoose,
|
|
|
+ treeData: {
|
|
|
+ id: "0",
|
|
|
+ topic: k.task ? k.task : "任务" + i,
|
|
|
+ children: []
|
|
|
+ }
|
|
|
});
|
|
|
});
|
|
|
});
|
|
@@ -871,7 +890,7 @@ export default {
|
|
|
// console.log("AreaAllWork", JSON.parse(JSON.stringify(AreaAllWork)));
|
|
|
|
|
|
framework.forEach(e => {
|
|
|
- e.taskList.forEach(k => {
|
|
|
+ e.taskList.forEach((k, kin) => {
|
|
|
k.toolEList.forEach((l, lIndex) => {
|
|
|
l.content = [];
|
|
|
l.rate = "";
|
|
@@ -886,19 +905,87 @@ export default {
|
|
|
) {
|
|
|
l.content.push(i.content);
|
|
|
l.time = i.tTime;
|
|
|
-
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// 分数循环
|
|
|
this.workEvaList.forEach(p => {
|
|
|
- p.tool = p.tool ? p.tool : 0
|
|
|
+ p.tool = p.tool ? p.tool : 0;
|
|
|
if (
|
|
|
k.stage == p.stage &&
|
|
|
k.task == p.task &&
|
|
|
lIndex == p.tool
|
|
|
) {
|
|
|
- l.rate = JSON.parse(p.rate);
|
|
|
+ let rateCopy = JSON.parse(p.rate);
|
|
|
+ for (const key in rateCopy) {
|
|
|
+ if (key != "content") {
|
|
|
+ rateCopy[key] = rateCopy[key] * 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ l.rate = rateCopy;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // 将没有提交作业,但是有评分标准的数据填上数据,防止报错
|
|
|
+ if (!l.rate && l.eList && l.eList.length) {
|
|
|
+ l.rate = { content: "" };
|
|
|
+ l.eList.forEach(elp => {
|
|
|
+ l.rate[elp.detail] = 0;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // 将素养添加进treeData中
|
|
|
+ if (l.eList && l.eList.length) {
|
|
|
+ l.eList.forEach((itemE, itemEInd) => {
|
|
|
+ let arr6 = k.treeData.children.some(
|
|
|
+ item => item.topic == itemE.target
|
|
|
+ );
|
|
|
+ if (!arr6) {
|
|
|
+ k.treeData.children.push({
|
|
|
+ id: kin + "+" + lIndex + "+" + itemEInd,
|
|
|
+ topic: itemE.target,
|
|
|
+ children: []
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ framework.forEach(e => {
|
|
|
+ e.taskList.forEach((k, kind) => {
|
|
|
+ k.treeData.children.forEach(l => {
|
|
|
+ k.toolEList.forEach((el, elind) => {
|
|
|
+ if (el.eList) {
|
|
|
+ el.eList.forEach((st, stind) => {
|
|
|
+ // console.log(l.topic, st.target, l.topic == st.target);
|
|
|
+
|
|
|
+ if (l.topic == st.target) {
|
|
|
+ let res3 = l.children.filter(function(item, index) {
|
|
|
+ return item.topic == st.detail;
|
|
|
+ });
|
|
|
+
|
|
|
+ if (!res3.length) {
|
|
|
+ l.children.push({
|
|
|
+ id: kind + "+" + elind + "+" + stind + "c",
|
|
|
+ topic: st.detail,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ id: kind + "+" + elind + "+" + stind + "b",
|
|
|
+ topic: `工具${elind}`
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ l.children.forEach(lc => {
|
|
|
+ if (lc.topic == st.detail) {
|
|
|
+ lc.children.push({
|
|
|
+ id: kind + "+" + elind + "+" + stind + "b",
|
|
|
+ topic: `工具${elind}`
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
});
|
|
@@ -914,7 +1001,7 @@ export default {
|
|
|
|
|
|
setTimeout(() => {
|
|
|
return resolve();
|
|
|
- }, 1000);
|
|
|
+ }, 1500);
|
|
|
})
|
|
|
.catch(err => {
|
|
|
console.error(err);
|
|
@@ -970,6 +1057,7 @@ export default {
|
|
|
this.worksDialogCon2 = this.tableData[i];
|
|
|
await this.getCourseDetail();
|
|
|
await this.exportPdfSet();
|
|
|
+
|
|
|
let a = await this.getPdf2();
|
|
|
pdfList.push(a);
|
|
|
}
|
|
@@ -1326,6 +1414,8 @@ export default {
|
|
|
}
|
|
|
.taskTitInd {
|
|
|
font-size: 14px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
.taskTitInd span:nth-child(1) {
|
|
|
background-color: rgba(242, 161, 75, 1);
|
|
@@ -1336,6 +1426,13 @@ export default {
|
|
|
box-sizing: border-box;
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
+.taskTitInd div {
|
|
|
+ background-color: rgba(242, 161, 75, 1);
|
|
|
+ width: 15px;
|
|
|
+ height: 15px;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
.taskTitInd span:nth-child(2) {
|
|
|
color: rgba(0, 0, 0, 0.9);
|
|
|
font-weight: 600;
|