|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
- <div
|
|
|
- class="pbl">
|
|
|
- <div class="pdfCon" ref="reportPdf" v-loading="loading">
|
|
|
+ <div class="pbl">
|
|
|
+ <div class="pdfCon" ref="reportPdf" v-loading="loading" element-loading-text="小可正在生成报告,请稍等。"
|
|
|
+ element-loading-spinner="el-icon-loading">
|
|
|
<div class="AiBtn" v-if="isDown">
|
|
|
<div style="display: flex;">
|
|
|
<el-button type="primary" size="small" @click="getAiAnalysisCon2"
|
|
@@ -346,7 +346,9 @@
|
|
|
<li>素养发展情况</li>
|
|
|
</div>
|
|
|
<div class="suy">素养发展雷达图</div>
|
|
|
- <div style="width: 100%; background-color: #fff;border-radius: 10px;border: 1px solid #ccc;">
|
|
|
+ <div
|
|
|
+ style="width: 100%; background-color: #fff;border-radius: 10px;border: 1px solid #ccc;"
|
|
|
+ >
|
|
|
<div
|
|
|
ref="moreChart"
|
|
|
style="width: 85%;margin: auto; height: 400px"
|
|
@@ -399,7 +401,8 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 作业内容 -->
|
|
|
- <div
|
|
|
+
|
|
|
+ <!-- <div
|
|
|
v-for="i in workList"
|
|
|
:key="i.id"
|
|
|
v-if="isStage(i.taskList) && claV"
|
|
@@ -408,9 +411,7 @@
|
|
|
backgroundColor: '#FFFBDC'
|
|
|
}"
|
|
|
>
|
|
|
- <div class="stageTit">
|
|
|
- 第{{ i.id * 1 + 1 }}阶段<span v-if="i.name">:{{ i.name }}</span>
|
|
|
- </div>
|
|
|
+ <div class="stageTit">{{ courseTit }}-作业集</div>
|
|
|
<div
|
|
|
v-for="k in i.taskList"
|
|
|
:key="k.task + 'a'"
|
|
@@ -430,7 +431,6 @@
|
|
|
<span>{{ k.taskTit }}</span>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <!-- <span class="toolTit">文档工具</span> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if="k.taskDetail" class="taskBri">
|
|
@@ -832,9 +832,7 @@
|
|
|
<div>提交时间:{{ l.time }}</div>
|
|
|
</div>
|
|
|
|
|
|
- <!-- 作业评分 -->
|
|
|
<div class="taskScoCon">
|
|
|
- <!-- 分数详情与素养 -->
|
|
|
<div style="flex: 1; display: flex; flex-wrap: wrap">
|
|
|
<div style="width: 410px; margin:0 20px 10px 0">
|
|
|
<div class="taskScoConTit">分数详情</div>
|
|
@@ -893,7 +891,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <!-- 评语 -->
|
|
|
<div
|
|
|
style="
|
|
|
flex: 1;
|
|
@@ -912,14 +909,13 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- 思维导图 -->
|
|
|
<div class="taskTitInd">
|
|
|
<div></div>
|
|
|
<span>任务评价体系</span>
|
|
|
</div>
|
|
|
<exjsmind :treeData="k.treeData" :keyL="k.task.toString()"></exjsmind>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -1175,7 +1171,7 @@ export default {
|
|
|
this.worksDialogCon2 = this.worksDialogCon;
|
|
|
|
|
|
// 获取作业信息内容
|
|
|
- this.exportPdfSet();
|
|
|
+ // this.exportPdfSet();
|
|
|
|
|
|
// ai分析语言
|
|
|
if (res.data[0][0].setting) {
|
|
@@ -1198,14 +1194,14 @@ export default {
|
|
|
|
|
|
// 处理班级,查看学生有几个班级
|
|
|
let stuCla = [];
|
|
|
- // digNum0 导出单个作业集 digNum1导出所有任务
|
|
|
+ // digNum0 导出单个作业集 digNum1导出所有任务 2查看pdf
|
|
|
|
|
|
if (this.digNum == 0) {
|
|
|
if (this.multipleSelection[0].classid) {
|
|
|
stuCla = this.multipleSelection[0].classid.split(",");
|
|
|
}
|
|
|
} else if (this.digNum == 1) {
|
|
|
- this.getWorks1();
|
|
|
+ // this.getWorks1();
|
|
|
} else {
|
|
|
if (this.worksDialogCon.classid) {
|
|
|
stuCla = this.worksDialogCon.classid.split(",");
|
|
@@ -1255,7 +1251,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 获取处理作业信息
|
|
|
- async exportPdfSet(uid, con) {
|
|
|
+ async exportPdfSet() {
|
|
|
let params = {
|
|
|
uid: this.worksDialogCon2.userid,
|
|
|
cid: this.cid
|
|
@@ -1447,7 +1443,7 @@ export default {
|
|
|
children: [
|
|
|
{
|
|
|
id: kind + "+" + elind + "+" + stind + "b",
|
|
|
- topic: `工具${elind*1 + 1}`
|
|
|
+ topic: `工具${elind * 1 + 1}`
|
|
|
}
|
|
|
]
|
|
|
});
|
|
@@ -1456,7 +1452,7 @@ export default {
|
|
|
if (lc.topic == st.detail) {
|
|
|
lc.children.push({
|
|
|
id: kind + "+" + elind + "+" + stind + "b",
|
|
|
- topic: `工具${elind*1 + 1}`
|
|
|
+ topic: `工具${elind * 1 + 1}`
|
|
|
});
|
|
|
}
|
|
|
});
|
|
@@ -1558,9 +1554,19 @@ export default {
|
|
|
// this.getDataStageMode(data);
|
|
|
// } else {
|
|
|
this.getDataAiMode(data);
|
|
|
+
|
|
|
+ if (this.data10 && this.data10.length) {
|
|
|
+ let Asd = this.data10[0].jsonTxt;
|
|
|
+ this.AiAnalysisCon2 = JSON.parse(Asd);
|
|
|
+ this.AiAnalysisCon2Copy = JSON.parse(
|
|
|
+ JSON.stringify(this.AiAnalysisCon2)
|
|
|
+ );
|
|
|
+ }
|
|
|
// }
|
|
|
|
|
|
setTimeout(() => {
|
|
|
+ this.loading = false;
|
|
|
+
|
|
|
return resolve();
|
|
|
}, 1500);
|
|
|
})
|
|
@@ -1791,11 +1797,6 @@ export default {
|
|
|
this.loading = true;
|
|
|
await this.getData();
|
|
|
if (this.data10 && this.data10.length) {
|
|
|
- let Asd = this.data10[0].jsonTxt;
|
|
|
- this.AiAnalysisCon2 = JSON.parse(Asd);
|
|
|
- this.AiAnalysisCon2Copy = JSON.parse(
|
|
|
- JSON.stringify(this.AiAnalysisCon2)
|
|
|
- );
|
|
|
} else {
|
|
|
this.$message.info("当前报告暂无分析结果,请先点击【AI分析】");
|
|
|
}
|
|
@@ -1816,39 +1817,37 @@ export default {
|
|
|
await this.getData();
|
|
|
|
|
|
if (this.data10 && this.data10.length) {
|
|
|
- let Asd = this.data10[0].jsonTxt;
|
|
|
- this.AiAnalysisCon2 = JSON.parse(Asd);
|
|
|
+ this.loading = false;
|
|
|
+ this.isDown = false;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.getPdf();
|
|
|
+ }, 500);
|
|
|
+ }else{
|
|
|
+ await this.getAiAnalysisCon2()
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
- this.isDown = false;
|
|
|
- setTimeout(() => {
|
|
|
- this.getPdf();
|
|
|
- }, 500);
|
|
|
+
|
|
|
} else {
|
|
|
this.circulatePdf();
|
|
|
}
|
|
|
},
|
|
|
- isGetPdf(){
|
|
|
+ isGetPdf() {
|
|
|
this.$confirm("确定导出本次学生报告吗?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ type: "warning"
|
|
|
})
|
|
|
.then(() => {
|
|
|
this.isDown = false;
|
|
|
setTimeout(() => {
|
|
|
- this.getPdf()
|
|
|
+ this.getPdf();
|
|
|
}, 500);
|
|
|
})
|
|
|
- .catch(() => {
|
|
|
-
|
|
|
- });
|
|
|
+ .catch(() => {});
|
|
|
},
|
|
|
// 下载pdf文件
|
|
|
async getPdf() {
|
|
|
const content = this.$refs.reportPdf;
|
|
|
- console.log('content',content.offsetHeight);
|
|
|
-
|
|
|
+ console.log("content", content.offsetHeight);
|
|
|
|
|
|
html2canvas(content)
|
|
|
.then(canvas => {
|
|
@@ -2119,22 +2118,7 @@ export default {
|
|
|
uid: this.userid,
|
|
|
mind_map_question: ""
|
|
|
};
|
|
|
- // let params = {
|
|
|
-
|
|
|
- // assistant_id: 'b19f1a1a-7586-11ef-8ce0-12e77c4cb76b',
|
|
|
- // file_ids: [],
|
|
|
- // temperature: this.mode == 3 ? 0.5 : 0.1,
|
|
|
- // message: [
|
|
|
- // {
|
|
|
- // type: "text",
|
|
|
- // text: messages.replaceAll("\n", " ").replaceAll("*", "")
|
|
|
- // }
|
|
|
- // ],
|
|
|
- // session_name: uuidv4(),
|
|
|
- // userId: this.userid,
|
|
|
- // model: "gpt-4o-mini"
|
|
|
- // };
|
|
|
-
|
|
|
+
|
|
|
return new Promise((resolve, reject) => {
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/chat", params)
|
|
@@ -2260,20 +2244,6 @@ export default {
|
|
|
5.**定期自我评估:** 定期对自己的学习成果进行自我评估,以确保学习目标与个人发展目标一致。
|
|
|
6.**学习策略优化:** 尝试不同的学习方法,如主动学习、可视化学习等,找到最适合自己的学习策略。 `;
|
|
|
|
|
|
- // let params = {
|
|
|
- // assistant_id: "b19f1a1a-7586-11ef-8ce0-12e77c4cb76b",
|
|
|
- // message: [
|
|
|
- // {
|
|
|
- // type: "text",
|
|
|
- // text: messages.replaceAll("\n", " ").replaceAll("*", "")
|
|
|
- // }
|
|
|
- // ],
|
|
|
- // session_name: uuidv4(),
|
|
|
- // userId: this.userid,
|
|
|
- // file_ids: [],
|
|
|
- // model: "gpt-4o-mini",
|
|
|
- // temperature: this.mode == 3 ? 0.5 : 0.1
|
|
|
- // };
|
|
|
let params = {
|
|
|
model: "gpt-4o-mini",
|
|
|
temperature: this.mode == 3 ? 0.5 : 0.1,
|
|
@@ -2291,39 +2261,41 @@ export default {
|
|
|
uid: this.userid,
|
|
|
mind_map_question: ""
|
|
|
};
|
|
|
- this.ajax
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/chat", params)
|
|
|
.then(response => {
|
|
|
- // let data = response.data.FunctionResponse;
|
|
|
- // console.log(data);
|
|
|
-
|
|
|
- // let md = new MarkdownIt();
|
|
|
-
|
|
|
- // if (data && data.message) {
|
|
|
- // let content = data.message;
|
|
|
- // this.AiAnalysisCon2.allFx = md.render(content);
|
|
|
- // }
|
|
|
|
|
|
let data = response.data.FunctionResponse;
|
|
|
console.log("data", data);
|
|
|
- let md = new MarkdownIt();
|
|
|
|
|
|
if (data.choices && data.choices.length && data.choices[0].message) {
|
|
|
let content = data.choices[0].message.content;
|
|
|
this.AiAnalysisCon2.allFx = content.replaceAll("<br>", "");
|
|
|
}
|
|
|
|
|
|
- // console.log("data", data);
|
|
|
this.loading = false;
|
|
|
this.canvasLing.splice(6, 1, false);
|
|
|
|
|
|
+ if (this.digNum == 0) {
|
|
|
+ this.loading = false;
|
|
|
+ this.isDown = false;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.getPdf();
|
|
|
+ }, 500);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
this.uploadData();
|
|
|
+ return resolve(1)
|
|
|
})
|
|
|
.catch(error => {
|
|
|
this.canvasLing.splice(6, 1, false);
|
|
|
|
|
|
console.log(error);
|
|
|
});
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
// 处理学习行为记录ai分析数据
|
|
|
async getAiAnalysisCon2() {
|
|
@@ -2397,16 +2369,17 @@ export default {
|
|
|
forAllList.push(mkAwit);
|
|
|
}
|
|
|
Promise.all(forAllList)
|
|
|
- .then(values => {
|
|
|
- // console.log(" this.AiAnalysisCon2", this.AiAnalysisCon2);
|
|
|
- for (let index = 0; index < values.length; index++) {
|
|
|
- this.canvasLing.splice(index, 1, false);
|
|
|
- }
|
|
|
- this.updateFx();
|
|
|
- })
|
|
|
- .catch(reason => {
|
|
|
- console.error("reason", reason);
|
|
|
- });
|
|
|
+ .then(async values => {
|
|
|
+ // console.log(" this.AiAnalysisCon2", this.AiAnalysisCon2);
|
|
|
+ for (let index = 0; index < values.length; index++) {
|
|
|
+ this.canvasLing.splice(index, 1, false);
|
|
|
+ }
|
|
|
+ this.updateFx();
|
|
|
+ })
|
|
|
+ .catch(reason => {
|
|
|
+ console.error("reason", reason);
|
|
|
+ });
|
|
|
+
|
|
|
},
|
|
|
// 上传ai分析
|
|
|
uploadData() {
|
|
@@ -2480,7 +2453,6 @@ export default {
|
|
|
}
|
|
|
this.courseName = this.tableData[0].course;
|
|
|
this.circulatePdf();
|
|
|
- // console.log(res.data[0]);
|
|
|
})
|
|
|
.catch(err => {
|
|
|
this.isLoading = false;
|
|
@@ -2492,13 +2464,28 @@ export default {
|
|
|
let _this = this;
|
|
|
var zip = new JSZip();
|
|
|
let pdfList = [];
|
|
|
+ this.isDown = false;
|
|
|
+
|
|
|
for (let i = 0; i < this.tableData.length; i++) {
|
|
|
this.loading = true;
|
|
|
|
|
|
+ let stuCla = "";
|
|
|
+ let ClaNam = "";
|
|
|
+ this.claOptions = [];
|
|
|
+ this.claV = "——";
|
|
|
+
|
|
|
+ if (this.tableData[i].classid) {
|
|
|
+ stuCla = this.tableData[i].classid.split(",");
|
|
|
+ ClaNam = this.tableData[i].class.split(",");
|
|
|
+ this.claV = stuCla[0];
|
|
|
+ this.claOptions.push({ value: stuCla[0], label: ClaNam[0] });
|
|
|
+ }
|
|
|
this.uid2 = this.tableData[i].userid;
|
|
|
this.worksDialogCon2 = this.tableData[i];
|
|
|
+
|
|
|
+ // await this.exportPdfSet();
|
|
|
await this.getData();
|
|
|
- this.loading = false;
|
|
|
+
|
|
|
let a = await this.getPdf2();
|
|
|
pdfList.push(a);
|
|
|
}
|
|
@@ -2512,49 +2499,83 @@ export default {
|
|
|
// 使用FileSaver保存压缩包
|
|
|
saveAs(content, _this.courseTit + "-学生报告汇总.zip");
|
|
|
});
|
|
|
+ this.isDown = true;
|
|
|
|
|
|
this.$emit("update:worksDialog", false);
|
|
|
// this.worksDialog = false;
|
|
|
},
|
|
|
// 压缩pdf
|
|
|
async getPdf2() {
|
|
|
- let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
- // console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
|
|
|
- let maxHeight = 64257;
|
|
|
+ const content = this.$refs.reportPdf;
|
|
|
+ console.log("content", content.offsetHeight);
|
|
|
+
|
|
|
return new Promise((resolve, reject) => {
|
|
|
- html2canvas(this.$refs.reportPdf, {
|
|
|
- useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
- scale: maxHeight / domHeight > 1 ? 1 : maxHeight / domHeight
|
|
|
- })
|
|
|
- .then(canvas => {
|
|
|
- const contentWidth = canvas.width;
|
|
|
- const contentHeight = canvas.height;
|
|
|
-
|
|
|
- var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
-
|
|
|
- var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
-
|
|
|
- //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
- //当内容未超过pdf一页显示的范围,无需分页
|
|
|
- // if (leftHeight < pageHeight) {
|
|
|
- pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
-
|
|
|
- var pdfData = {
|
|
|
- pdfName:
|
|
|
- this.worksDialogCon2.course +
|
|
|
- "-作业集-" +
|
|
|
- this.worksDialogCon2.sName +
|
|
|
- ".pdf",
|
|
|
- pdfCon: pdf.output("blob")
|
|
|
- };
|
|
|
- // pdfArray.push(pdfData);
|
|
|
-
|
|
|
- return resolve(pdfData);
|
|
|
- })
|
|
|
- .catch(err => {
|
|
|
- console.log(err);
|
|
|
- });
|
|
|
+ html2canvas(content).then(canvas => {
|
|
|
+ const imgData = canvas.toDataURL("image/png");
|
|
|
+ const pdf = new jspdf("p", "pt", [
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ ]);
|
|
|
+
|
|
|
+ pdf.addImage(
|
|
|
+ imgData,
|
|
|
+ "PNG",
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ content.offsetWidth,
|
|
|
+ content.offsetHeight
|
|
|
+ );
|
|
|
+ var pdfData = {
|
|
|
+ pdfName:
|
|
|
+ this.worksDialogCon2.course +
|
|
|
+ "-作业集-" +
|
|
|
+ this.worksDialogCon2.sName +
|
|
|
+ ".pdf",
|
|
|
+ pdfCon: pdf.output("blob")
|
|
|
+ };
|
|
|
+ return resolve(pdfData);
|
|
|
+ });
|
|
|
+ }).catch(err => {
|
|
|
+ console.log(err);
|
|
|
});
|
|
|
+
|
|
|
+ // let domHeight = this.$refs.reportPdf.offsetHeight;
|
|
|
+ // // console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
|
|
|
+ // let maxHeight = 64257;
|
|
|
+ // return new Promise((resolve, reject) => {
|
|
|
+ // html2canvas(this.$refs.reportPdf, {
|
|
|
+ // useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
+ // scale: maxHeight / domHeight > 1 ? 1 : maxHeight / domHeight
|
|
|
+ // })
|
|
|
+ // .then(canvas => {
|
|
|
+ // const contentWidth = canvas.width;
|
|
|
+ // const contentHeight = canvas.height;
|
|
|
+
|
|
|
+ // var pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
|
+
|
|
|
+ // var pdf = new jspdf("", "pt", [contentWidth, contentHeight]);
|
|
|
+
|
|
|
+ // //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
|
|
|
+ // //当内容未超过pdf一页显示的范围,无需分页
|
|
|
+ // // if (leftHeight < pageHeight) {
|
|
|
+ // pdf.addImage(pageData, "JPEG", 0, 0, contentWidth, contentHeight);
|
|
|
+
|
|
|
+ // var pdfData = {
|
|
|
+ // pdfName:
|
|
|
+ // this.worksDialogCon2.course +
|
|
|
+ // "-作业集-" +
|
|
|
+ // this.worksDialogCon2.sName +
|
|
|
+ // ".pdf",
|
|
|
+ // pdfCon: pdf.output("blob")
|
|
|
+ // };
|
|
|
+ // // pdfArray.push(pdfData);
|
|
|
+
|
|
|
+ // return resolve(pdfData);
|
|
|
+ // })
|
|
|
+ // .catch(err => {
|
|
|
+ // console.log(err);
|
|
|
+ // });
|
|
|
+ // });
|
|
|
},
|
|
|
|
|
|
// ai模式处理数据
|
|
@@ -2659,8 +2680,6 @@ export default {
|
|
|
|
|
|
// 编辑
|
|
|
extCon(val) {
|
|
|
- console.log("extCon");
|
|
|
-
|
|
|
this.exitCon.splice(val, 1, false);
|
|
|
},
|
|
|
// 确定
|
|
@@ -3853,155 +3872,6 @@ export default {
|
|
|
done();
|
|
|
}
|
|
|
|
|
|
- //#region
|
|
|
- // 获取文档id
|
|
|
- // async createFileid(url) {
|
|
|
- // let _this = this;
|
|
|
- // return new Promise((resolve, reject) => {
|
|
|
- // try {
|
|
|
- // _this.ajax
|
|
|
- // .put("https://gpt4.cocorobo.cn/upload_file_knowledge", {
|
|
|
- // url: url
|
|
|
- // })
|
|
|
- // .then(res => {
|
|
|
- // let _data = res.data.FunctionResponse;
|
|
|
- // if (_data.result && _data.result.id) {
|
|
|
- // resolve(_data.result.id);
|
|
|
- // } else {
|
|
|
- // resolve(1);
|
|
|
- // }
|
|
|
- // })
|
|
|
- // .catch(function(error) {
|
|
|
- // resolve(1);
|
|
|
- // });
|
|
|
- // } catch (e) {
|
|
|
- // resolve(1);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // },
|
|
|
-
|
|
|
- // 截图
|
|
|
- // async capture() {
|
|
|
- // await html2canvas(this.$refs.moreChart, {
|
|
|
- // useCORS: true // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
- // }).then(canvas => {
|
|
|
- // const imgUrl = canvas.toDataURL("images/png");
|
|
|
- // let base64Data = imgUrl.split(",")[1];
|
|
|
- // let binaryData = atob(base64Data);
|
|
|
- // let uint8Array = new Uint8Array(binaryData.length);
|
|
|
- // for (let i = 0; i < binaryData.length; i++) {
|
|
|
- // uint8Array[i] = binaryData.charCodeAt(i);
|
|
|
- // }
|
|
|
- // // 获取blob文件流
|
|
|
- // let blob = new Blob([uint8Array], { type: "image/png" });
|
|
|
- // // 文件流转文件
|
|
|
- // let file = new File([blob], "filename.png", {
|
|
|
- // type: "image/png"
|
|
|
- // });
|
|
|
- // let a = this.beforeUpload(file);
|
|
|
- // this.suImg = a;
|
|
|
- // });
|
|
|
-
|
|
|
- // html2canvas(this.$refs.jsm, {
|
|
|
- // useCORS: true // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
|
|
|
- // }).then(canvas => {
|
|
|
- // const imgUrl = canvas.toDataURL("images/png");
|
|
|
- // let base64Data = imgUrl.split(",")[1];
|
|
|
- // let binaryData = atob(base64Data);
|
|
|
- // let uint8Array = new Uint8Array(binaryData.length);
|
|
|
- // for (let i = 0; i < binaryData.length; i++) {
|
|
|
- // uint8Array[i] = binaryData.charCodeAt(i);
|
|
|
- // }
|
|
|
- // // 获取blob文件流
|
|
|
- // let blob = new Blob([uint8Array], { type: "image/png" });
|
|
|
- // // 文件流转文件
|
|
|
- // let file = new File([blob], "filename.png", {
|
|
|
- // type: "image/png",
|
|
|
- // });
|
|
|
- // let a = this.beforeUpload(file)
|
|
|
- // this.suImg.push(a)
|
|
|
-
|
|
|
- // });
|
|
|
- // },
|
|
|
- // 上传图片
|
|
|
- // beforeUpload(file) {
|
|
|
- // // const loading = this.openLoading();
|
|
|
- // // var file = "";
|
|
|
-
|
|
|
- // // for (let cfindex = 0; cfindex < event.target.files.length; cfindex++) {
|
|
|
- // // console.log("event.target.files", event.target.files);
|
|
|
- // // file = event.target.files[cfindex];
|
|
|
- // var credentials = {
|
|
|
- // accessKeyId: "AKIATLPEDU37QV5CHLMH",
|
|
|
- // secretAccessKey: "Q2SQw37HfolS7yeaR1Ndpy9Jl4E2YZKUuuy2muZR"
|
|
|
- // }; //秘钥形式的登录上传
|
|
|
- // window.AWS.config.update(credentials);
|
|
|
- // window.AWS.config.region = "cn-northwest-1"; //设置区域
|
|
|
-
|
|
|
- // var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
|
|
|
- // var imgA = [
|
|
|
- // "png",
|
|
|
- // "jpg",
|
|
|
- // "jpeg",
|
|
|
- // "bmp",
|
|
|
- // "gif",
|
|
|
- // "webp",
|
|
|
- // "psd",
|
|
|
- // "svg",
|
|
|
- // "tiff"
|
|
|
- // ];
|
|
|
- // if (
|
|
|
- // imgA.indexOf(file.name.split(".")[file.name.split(".").length - 1]) ==
|
|
|
- // -1
|
|
|
- // ) {
|
|
|
- // this.$message.error("图片格式错误");
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // this.imgLoading = true;
|
|
|
- // var _this = this;
|
|
|
-
|
|
|
- // this.inputShow = false;
|
|
|
- // this.progress = 0;
|
|
|
- // this.proVisible = true;
|
|
|
- // this.isFinishSize = 0;
|
|
|
- // this.isAllSize = (file.size / 1024 / 1024).toFixed(2);
|
|
|
- // _this.$forceUpdate();
|
|
|
-
|
|
|
- // if (file) {
|
|
|
- // var params = {
|
|
|
- // Key:
|
|
|
- // file.name.split(".")[0] +
|
|
|
- // new Date().getTime() +
|
|
|
- // "." +
|
|
|
- // file.name.split(".")[file.name.split(".").length - 1],
|
|
|
- // ContentType: file.type,
|
|
|
- // Body: file,
|
|
|
- // "Access-Control-Allow-Credentials": "*",
|
|
|
- // ACL: "public-read"
|
|
|
- // }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
|
|
|
- // var options = {
|
|
|
- // partSize: 2048 * 1024 * 1024,
|
|
|
- // queueSize: 2,
|
|
|
- // leavePartsOnError: true
|
|
|
- // };
|
|
|
- // bucket
|
|
|
- // .upload(params, options)
|
|
|
- // .on("httpUploadProgress", function(evt) {
|
|
|
- // //这里可以写进度条
|
|
|
- // })
|
|
|
- // .send(function(err, data) {
|
|
|
- // if (err) {
|
|
|
- // _this.$message.error("上传失败");
|
|
|
- // } else {
|
|
|
- // console.log(data.Location);
|
|
|
-
|
|
|
- // return data.Location;
|
|
|
- // }
|
|
|
- // });
|
|
|
- // }
|
|
|
- // // }
|
|
|
- // },
|
|
|
-
|
|
|
// 阶段模式处理数据
|
|
|
// getDataStageMode(data) {
|
|
|
// data.forEach((e, eInd) => {
|
|
@@ -4341,13 +4211,19 @@ export default {
|
|
|
height: 100%;
|
|
|
box-sizing: border-box;
|
|
|
margin: auto;
|
|
|
- background-color: #F3F7FD;
|
|
|
+ background-color: #f3f7fd;
|
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
|
/* padding: 20px; */
|
|
|
/* padding-top: 10px; */
|
|
|
overflow: auto;
|
|
|
border-radius: 10px;
|
|
|
- position: relative
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.pbl >>> .el-loading-spinner{
|
|
|
+ top: 500px !important;
|
|
|
+}
|
|
|
+.zxt >>> .el-loading-spinner{
|
|
|
+ top: 50% !important;
|
|
|
}
|
|
|
.pdfCon {
|
|
|
width: 810pt;
|
|
@@ -4790,8 +4666,8 @@ export default {
|
|
|
font-weight: 600;
|
|
|
font-size: 20px;
|
|
|
margin-bottom: 20px;
|
|
|
- color: rgba(242, 161, 75, 1);
|
|
|
- border-left: 5px rgba(242, 161, 75, 1) solid;
|
|
|
+ color: #605449;
|
|
|
+ /* border-left: 5px 605449 solid; */
|
|
|
padding-left: 5px;
|
|
|
}
|
|
|
.taskTitInd {
|
|
@@ -4864,7 +4740,6 @@ export default {
|
|
|
font-weight: 400;
|
|
|
line-height: 30px;
|
|
|
padding: 0 10px;
|
|
|
-
|
|
|
}
|
|
|
.taskSco {
|
|
|
background-color: rgba(253, 247, 243, 1);
|
|
@@ -4954,7 +4829,7 @@ export default {
|
|
|
padding: 3px 10px;
|
|
|
margin: 0 8px;
|
|
|
}
|
|
|
-.taskCon{
|
|
|
+.taskCon {
|
|
|
margin-bottom: 15px;
|
|
|
background-color: #fff;
|
|
|
padding: 20px;
|