1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411 |
- <template>
- <div class="markDialog" v-loading="vLoading">
- <div
- style="overflow: auto;overflow-x: hidden;width: 315px;box-sizing: content-box;border-right: 1px rgba(231, 231, 231, 1) solid;"
- >
- <div class="left">
- <div
- v-if="finalMarkList == toolIndex"
- v-loading="ScLoading"
- >
- <div class="scoreTit">
- <div>任务得分</div>
- <div>
- <span style="color: rgba(54, 129, 252, 1);margin-right: 3px;">{{
- totalScore ? totalScore : 0
- }}</span
- >分
- </div>
- </div>
- <div class="allD">
- <div class="scoreStar">
- <div
- v-show="reveal"
- v-for="(e, index) in scoTitList"
- :key="index + 'a'"
- >
- <div class="scoreStarBack" >
- <el-tooltip
- class="item"
- effect="dark"
- :content="e.detail"
- placement="top"
- >
- <div class="briefTit">
- <img class="titRoot" src="../../../assets/icon/newIcons/blueRoot.png" alt="">
- {{ e.detail }}
- </div>
- </el-tooltip>
- <el-rate @change="submit" v-model="e.cog"></el-rate>
- </div>
- </div>
- <div
- v-show="!reveal"
- v-for="(e, index) in scoTitList.slice(0, 3)"
- :key="index + 'b'"
- >
- <div class="scoreStarBack">
- <el-tooltip
- class="item"
- effect="dark"
- :content="e.detail"
- placement="top"
- >
- <div class="briefTit">
- <img class="titRoot" src="../../../assets/icon/newIcons/blueRoot.png" alt="">
- {{ e.detail }}
- </div>
- </el-tooltip>
- <el-rate @change="submit" v-model="e.cog"></el-rate>
- </div>
- </div>
- </div>
- <div
- v-if="reveal && scoTitList.length > 3"
- class="scoreStar2"
- @click="revealBtn"
- >
- 折叠 <i class="el-icon-arrow-up"></i>
- </div>
- <div
- v-if="!reveal && scoTitList.length > 3"
- class="scoreStar2"
- @click="revealBtn"
- >
- 全部 <i class="el-icon-arrow-down"></i>
- </div>
- </div>
- <div class="AreaCss">
- <el-input
- type="textarea"
- placeholder="您可在此输入评语"
- v-model="textarea"
- @blur="submit"
- >
- <!-- style="padding-bottom: 10px;" -->
- </el-input>
- <!-- <div
- class="AreaBtn"
- v-if="
- currentUid.type == 10 || currentUid.type == 13 || isMarkCom == 1
- "
- @click="generateMsg(currentUid)"
- >
- <span>重新生成</span>
- </div> -->
- </div>
- <div
- style="width:100%;display:flex;height: 25px;;justify-content: space-between;"
- >
-
- <div ></div>
- <div style="display: flex;">
- <div
- class="ScrBtn"
- @click="reset"
- style="color: rgba(0, 0, 0, 0.6);background-color: rgba(243, 247, 253, 1);border: none;"
- >
- 清空
- </div>
- <div
- class="ScrBtn"
- style="margin-left: 10px;"
- @click="AIsubmit(currentUid)"
- v-if="
- currentUid.type == 10 || currentUid.type == 13 || isMarkCom == 1
- "
- >
- <img
- src="../../../assets/icon/newIcons/Brootper.svg"
- alt=""
- />AI评分
- </div>
- <!-- <div
- class="ScrBtn"
- @click="submit"
- style="margin-left: 10px;color:#fff;border: none;background-color: rgba(54, 129, 252, 1);"
- >
- 确认
- </div> -->
- </div>
- </div>
- </div>
- <!-- 提交列表 -->
- <div style="flex: 1;display: flex;flex-direction: column;overflow: auto;">
- <div class="workListTit" @click="workListTitBtn">
- <i class="el-icon-arrow-down"></i>提交列表 ({{ workList.length }})
- </div>
- <div style="overflow: auto;flex: 1;">
- <div
- v-if="workListShow"
- v-for="(i, index) in workList"
- :key="index"
- :class="['schPer', i.userid == DgUid ? 'selBlock' : '']"
- style="cursor: pointer;"
- @click="cutPer(i.userid,index)"
- >
- <img v-if="i.headportrait" :src="i.headportrait" alt="" />
- <img
- v-else
- src="https://beta.pbl.cocorobo.cn/pbl-teacher-table/dist/static/img/portal.b3cf7fa.png"
- alt=""
- />
- <div class="con">
- <div class="tit">
- <span
- style="font-size: 14px;color: rgba(0, 0, 0, 0.9);font-weight: 400;"
- >{{ i.name }}</span
- >
- <span
- style="font-size: 14px;color:rgba(0, 0, 0, 0.4);"
- v-if="i.markSco == null"
- >未评分</span
- >
- <span
- v-else
- style="font-size: 16px;color: rgba(0, 0, 0, 0.9);font-weight: 600;"
- >{{ i.markSco }}</span
- >
- </div>
- <div class="Timer">{{ i.time }}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 作业展示区 -->
- <div class="Rig">
- <div class="RigTop">
- <div
- style="display: flex;align-items: center;justify-content: space-between;width: 100%;"
- >
- <div
- class="schPer"
- style="border: none;width: 300px;padding: 0;margin: 0;"
- >
- <img
- v-if="currentUid.headportrait"
- :src="currentUid.headportrait"
- alt=""
- />
- <img
- v-else
- src="https://beta.pbl.cocorobo.cn/pbl-teacher-table/dist/static/img/portal.b3cf7fa.png"
- alt=""
- />
- <div class="con">
- <div class="tit">
- <span
- style="font-size: 14px;color: rgba(0, 0, 0, 0.9);font-weight: 400;"
- >{{ currentUid.name }}</span
- >
- </div>
- <div class="Timer">{{ currentUid.time }}</div>
- </div>
- </div>
- <div class="cutStuBtn">
- <div>
- <span v-if="current == 0" style="cursor: pointer;color:#ccc">上一个</span>
- <span v-else @click="prevStu" style="cursor: pointer;color: rgba(54, 129, 252, 1)">上一个</span>
- </div>
- <div>
- <span v-if="current >= workList.length -1" style="cursor: pointer;color: #ccc">下一个</span>
- <span v-else @click="nextStu" style="cursor: pointer;color: rgba(54, 129, 252, 1)">下一个</span>
- </div>
- <!-- <div><span @click="prevStu" v-if="this.current > 0">上一个</span></div>
- <div><span @click="nextStu" v-if="this.current < this.workList.length-1">下一个</span></div> -->
- </div>
- </div>
- </div>
- <div class="RigConTit">
- <div :class="[cutNum ? '' : 'RigConTitOn']" @click="cutPage(0)">
- 学生作业
- </div>
- <div :class="[cutNum ? 'RigConTitOn' : '']" @click="cutPage(1)">
- 点赞与评论
- </div>
- </div>
- <div class="RigCon">
- <!-- 作业内容 -->
- <div v-if="cutNum == 0" style="height: 97%;">
- <div
- v-if="
- currentUid.type == 13 || currentUid.type == 10
- // currentUid.type == 15
- "
- >
- <div class="cont" v-html="currentUid.content.text"></div>
- </div>
- <div v-if="currentUid.type == 1">
- <img
- @click="previewImg(currentUid.content)"
- style="max-width: 100%;object-fit: cover;"
- :src="currentUid.content"
- alt=""
- />
- </div>
- <div v-if="currentUid.type == 3">
- <div style="width: 100%;text-align: center;">
- <div
- style="margin-bottom: 20px;font-weight: 600;font-size: 16px;"
- >
- {{ currentUid.content[0].answerTitle }}
- </div>
- <div>{{ currentUid.content[0].answer }}</div>
- </div>
- </div>
- <div v-if="currentUid.type == 4" style="height: 100%;">
- <iframe
- v-if="ifPdf == 1"
- style="width: 100%; height: 99%; border: none"
- :src="
- 'https://cloud.cocorobo.cn/pdf.js/web/viewer.html?file=' +
- encodeURIComponent(currentUid.content)
- "
- ></iframe>
- <iframe
- v-else
- style="width: 100%; height: 100%; border: none"
- :src="
- 'https://view.officeapps.live.com/op/view.aspx?src=' +
- encodeURIComponent(currentUid.content)
- "
- frameborder="0"
- ></iframe>
- </div>
- <div v-if="currentUid.type == 12" style="height: 100%;">
- <div>
- <div
- style="cursor: pointer;"
- @click="downloadFile(currentUid.content)"
- >
- 下载txt
- </div>
- <!-- <div>{{ currentUid.content }}</div> -->
- </div>
- </div>
- <div v-if="currentUid.type == 15" style="height: 100%;">
- <div
- class="worksAnswer"
- v-if="currentUid.content"
- @click="
- openCocoPi(57, toolIndex, currentUid.userid, currentUid.name)
- "
- >
- <img src="../../../assets/icon/codeFile.png" />
- <div>点击打开CocoPi</div>
- </div>
- </div>
- <div v-if="currentUid.type == 5" style="height: 100%;">
- <video-player
- class="video-player vjs-custom-skin"
- :playsinline="true"
- :options="playerOptions"
- @play="onPlayerPlay($event)"
- style="width: 90%; height: 95%; margin: 0 0 0 30px"
- ></video-player>
- </div>
- </div>
- <!-- 点赞与评论 -->
- <div v-if="cutNum == 1">
- <div style="display: flex;align-items: center;">
- <img
- style="margin-right: 3px;"
- src="../../../assets/icon/newIcons/likeG.png"
- alt=""
- />点赞({{ likeList.length }})
- </div>
- <div class="likeList">
- <div v-for="i in likeList" :key="i.id">{{ i.username }}</div>
- </div>
- <div style="display: flex;align-items: center;">
- <img
- style="margin-right: 3px;"
- src="../../../assets/icon/newIcons/commG.png"
- alt=""
- />评论({{ commentList.length }})
- </div>
- <div class="commentListCss" v-if="commentList.length">
- <div
- style="padding-bottom: 25px;display: flex;justify-content: space-between;"
- v-for="i in commentList"
- :key="i.id"
- >
- <div class="schPer2" style="border: none;width: 90%;padding: 0;">
- <img v-if="i.headportrait" :src="i.headportrait" alt="" />
- <img
- v-else
- src="https://beta.pbl.cocorobo.cn/pbl-teacher-table/dist/static/img/portal.b3cf7fa.png"
- alt=""
- />
- <div class="con">
- <div class="tit2">
- <div class="TitName">{{ i.username }}</div>
- <span
- style="font-size: 14px;color: rgba(0, 0, 0, 0.9);font-weight: 400;width: 200px;"
- >{{ i.time }}</span
- >
- </div>
- <div class="Timer">{{ i.comment }}</div>
- </div>
- </div>
- <div>
- <span
- style="color: #3B7BD7;cursor: pointer;"
- @click="deleteComment(i.id)"
- >删除</span
- >
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { v4 as uuidv4 } from "uuid";
- export default {
- props: [
- "uid",
- "stage",
- "toolIndex",
- "task",
- "scoTit",
- "markScoreVisible",
- "markScoreworksStudent",
- "finalMarkList"
- ],
- data() {
- return {
- textarea: "",
- reveal: false, //得分详情框全部与折叠
- workListShow: true, //作业显示
- cutNum: 0, //作业与评论切换
- scoTitList: [], //得分详情框数据
- workList: [], //作业列表
- cid: this.$route.query.courseId,
- cUserid: this.$route.query.userid, //账号登录人id
- cuScoCon: "",
- currentUid: {}, //当前评分框学生信息
- current: "", //上一位下一位中的第几位
- DgUid: this.uid, //当前评分框学生id
- likeList: [], //喜欢list
- commentList: [], //评分list
- workId: "", //作业id。用于分类评论与点赞list
- vLoading: false,
- allSco: 0,
- ifPdf: 1,
- ScLoading: false,
- playerOptions: {
- playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
- autoplay: false, //如果true,浏览器准备好时开始回放。
- muted: false, // 默认情况下将会消除任何音频。
- loop: false, // 导致视频一结束就重新开始。
- preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
- language: "zh-CN",
- aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
- fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
- sources: [
- {
- type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 || "video/ogg"|| "video/webm"
- src: "" //url地址require("../../../assets/media/aaa.mp4")
- }
- ],
- // poster: require("../../../assets/tu31.png"), //你的封面地址
- // poster: dataRes.imgUrl, //你的封面地址
- notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
- controlBar: {
- timeDivider: true, //当前时间和持续时间的分隔符
- durationDisplay: true, //显示持续时间
- remainingTimeDisplay: false, //是否显示剩余时间功能
- fullscreenToggle: true //全屏按钮
- }
- },
- xianObj: ["DOCX", "MD", "TXT", "PDF" ,"PPTX"]
- };
- },
- watch: {
- markScoreVisible(newVal) {
- this.workListShow = true;
- this.reveal = false;
- this.cutNum = 0;
- this.textarea = "";
- this.scoTitList = JSON.parse(JSON.stringify(this.scoTit));
- this.selectSWorksData();
- }
- },
- computed: {
- totalScore() {
- let a = 0;
- this.scoTitList.forEach(e => {
- if (e.cog) {
- a += e.cog * 1;
- }
- });
-
- return (a / this.scoTit.length).toFixed(1);
- },
- isMarkCom() {
- // console.log('a',this.currentUid);
- if (this.currentUid.type == 4 || this.currentUid.type == 12) {
- let a = this.currentUid.content.slice(
- this.currentUid.content.lastIndexOf(".") + 1
- );
- if (this.xianObj.indexOf(a.toUpperCase()) != -1) {
- return 1;
- } else {
- return 0;
- }
- } else {
- return 0;
- }
- }
- },
- mounted() {
- this.scoTitList = JSON.parse(JSON.stringify(this.scoTit));
- this.selectSWorksData();
- },
- methods: {
- // 预览图片
- previewImg(url) {
- //预览图片
- this.$hevueImgPreview(url);
- },
- onPlayerPlay() {},
- // 获取文档id
- 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);
- }
- });
- },
- // 老师提交评分
- submit() {
- let data = this.scoTitList.map(e => {
- return e.detail + ":" + e.cog;
- });
- // console.log("data", data);
- const processedData = {};
- data.forEach(item => {
- const [key, value] = item.split(":");
- processedData[key] = Number(value) ? Number(value) : 0;
- });
- processedData.content = this.textarea;
- // console.log(processedData);
- let params = {
- cid: this.cid,
- s: this.stage,
- t: this.task,
- rate: JSON.stringify(processedData),
- uid: this.DgUid
- };
- // return console.log(params);
- this.ajax
- .get(this.$store.state.api + "updateWorksEva", params)
- .then(res => {
- // this.$message({
- // message: "评价成功",
- // type: "success"
- // });
- this.ScLoading = false;
- // this.selectSWorksData();
- // this.$emit("refreshOther", this.toolIndex);
- })
- .catch(err => {
- this.$message.error("评价失败");
- console.error(err);
- });
- },
- // 重置
- reset() {
- this.$confirm("是否清空评分和评语?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- this.scoTitList.forEach(e => {
- e.cog = 0;
- });
- this.textarea = "";
- })
- .catch(() => {});
-
- // this.scoTitList = JSON.parse(JSON.stringify(this.scoTit));
- },
- // ai评分
- async AIsubmit(work) {
- // return console.log("con", this.scoTit, this.cuScoCon);
- this.ScLoading = true;
- let _fileid = "";
- if (work.type == 4 || work.type == 12) {
- _fileid = await this.createFileid(work.content);
- }
- let tit = JSON.parse(JSON.stringify(this.scoTit));
- tit.forEach((e, index) => {
- if (!e.isai) {
- e.isai = 1;
- }
- });
- let con = this.cuScoCon;
- let laws = "";
- for (let i = 0; i < tit.length; i++) {
- if (tit[i].isai == 1) {
- let a = tit[i].detail
- let result = a.match(/[\u4e00-\u9fa5a-zA-Z]+/g).join("");
-
- laws += `评价维度:“${result}”, 评价细则:${tit[i].rule} \n`;
- }
- }
- let msg = `NOTICE
- Role: 你是一个专业的项目式学习导师,你要对学生的评价高度负责。你要根据“六级评价细则”给学生作品评分,并生成需要的JSON数据。
- Language: Please use the same language as the user requirement, if the user speaks Chinese, the specific text of your answer should also be in Chinese.
- ATTENTION: Use '##' to SPLIT SECTIONS, not '#'. Output format carefully referenced "Format example".
- Instruction: Based on the context, follow "Format example", write content.
- #Context
- ##要求
- 根据<评价细则>和<作业内容>的相关性评价作业,判断该作业属于六级中的哪个等级,结合“评价细则”和等级写评语。如果作业内容与评价细则无关,则直接评为0星。
- ##评分资料
- 评价细则:${laws}
- 作业内容:${_fileid ? "上传的文件内容" : con}
- #输出要求#
- 输出每个维度的“等级”和作业的综合性“评语”
- “评语”控制在150字左右
- 评价维度要按原样输出,只输出 ##评分资料 “评分细则”引号内的
- # Format example
- [{'评价维度':'评价等级0-5(数字)'},{'评价维度':'评价等级0-5(数字)'},{'评价维度':'评价等级0-5(数字)'},{'评价维度':'评价等级0-5(数字)'},{'评语':'评语(150个字左右)'}]
- `;
- // console.log(msg);
- this.aiGet2(msg, _fileid);
- },
- // ai打分
- aiGet2(messages, _fileid) {
- let _this = this;
- let params = {
- assistant_id: "6063369f-289a-11ef-8bf4-12e77c4cb76b",
- message: [
- {
- type: "text",
- text: messages.replaceAll("\n", " ").replaceAll("*", "")
- }
- ],
- session_name: uuidv4(),
- userId: this.cUserid,
- file_ids: _fileid ? [_fileid] : [],
- model: "gpt-4o-2024-08-06"
- };
- this.ajax
- .post("https://gpt4.cocorobo.cn/ai_agent_park_chat", params)
- .then(response => {
- let data = response.data.FunctionResponse;
- console.log("data", data);
- if (data.message) {
- let dArray = {};
- try {
- dArray = JSON.parse(
- data.message.replaceAll("```json", "").replaceAll("```", "")
- );
- } catch (error) {
- console.log("error_________________" + error);
- try {
- let regex = new RegExp("(?<=```json)([\\s\\S]*?)(?=```)");
- let match = data.message.match(regex);
- dArray = JSON.parse(
- match[0]
- .replace(/\n/g, "")
- .replace(/\s{2,}/g, "")
- .replace(/\'/g, '"')
- );
- } catch (error) {
- try {
- dArray = JSON.parse(
- data.message
- .replaceAll("```json", "")
- .replaceAll("# Solution", "")
- .replaceAll("```", "")
- .replace(/\n/g, "")
- .replace(/\s{2,}/g, "")
- .replace(/\'/g, '"')
- );
- } catch (error) {
- console.log("error_________________" + error);
- }
- console.log("error_________________" + error);
- }
- }
- let processedData = {};
- // console.log(JSON.parse(JSON.stringify(dArray)));
- dArray.forEach(function(item) {
- let key = Object.keys(item)[0];
- let value = item[key];
- processedData[key] = value;
- });
- let IsAIsuccess = 0
- for (const tKey in this.scoTitList) {
- for (const key in processedData) {
- let result = this.scoTitList[tKey].detail.match(/[\u4e00-\u9fa5a-zA-Z]+/g).join("");
- let key2 = key.match(/[\u4e00-\u9fa5a-zA-Z]+/g).join("");
- if (key != "评语") {
- if (result.indexOf(key2) != -1) {
- IsAIsuccess++
- }
- continue;
- }
- }
- continue;
- }
- let scotNum = 0
- this.scoTitList.forEach(e=>{
- if (e.isai == 1) {
- scotNum++
- }
- })
- if (IsAIsuccess != scotNum) {
- // _this.$message.error("评价失败");
- // _this.ScLoading = false;
- this.aiGet2(messages,_fileid)
- return
- }
- for (const key in processedData) {
- if (key == "评语") {
- processedData.content = processedData[key];
- }
- }
- delete processedData["评语"];
- let params = {
- cid: _this.cid,
- s: _this.stage,
- t: _this.task,
- rate: JSON.stringify(processedData),
- uid: _this.DgUid
- };
- _this.ajax
- .get(_this.$store.state.api + "updateWorksEva", params)
- .then(res => {
- _this.$message({
- message: "评价成功",
- type: "success"
- });
- _this.ScLoading = false;
- _this.selectSWorksData();
- })
- .catch(err => {
- // _this.ScLoading = false;
- // _this.$message.error("评价失败");
- this.aiGet2(messages,_fileid)
- console.error(err);
- });
- }
- this.$forceUpdate();
- })
- .catch(error => {
- // _this.$message.error("评价失败");
- // _this.ScLoading = false;
- this.aiGet2(messages,_fileid)
- console.log(error);
- });
- },
- // 上一个
- prevStu() {
- if (this.ScLoading) return this.$message.info("请稍后,正在ai评价中");
- if (this.current > 0) {
- this.current--;
- this.DgUid = this.workList[this.current].userid;
- this.selectSWorksData();
- } else {
- this.$message.info("已经是第一位了");
- }
- },
- // 下一个
- nextStu() {
- if (this.ScLoading) return this.$message.info("请稍后,正在ai评价中");
- if (this.current < this.workList.length - 1) {
- this.current++;
- this.DgUid = this.workList[this.current].userid;
- this.selectSWorksData2();
- } else {
- this.$message.info("已经是最后一位了");
- }
- },
- // 提交列表点击切换
- cutPer(val,index) {
- if (this.ScLoading) return this.$message.info("请稍后,正在ai评价中");
- this.current = index;
- this.DgUid = val;
- this.selectSWorksData2();
- },
- // 任务得分折叠
- revealBtn() {
- this.reveal = !this.reveal;
- },
- // 提交列表折叠
- workListTitBtn() {
- this.workListShow = !this.workListShow;
- },
- // 点赞与评论切换
- cutPage(val) {
- this.cutNum = val;
- },
- // 删除评论
- deleteComment(wid) {
- this.$confirm("确定删除此评论吗?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- let params = {
- id: wid
- };
- this.ajax
- .get(this.$store.state.api + "deleteComment2", params)
- .then(res => {
- this.$message({
- message: "删除评论成功",
- type: "success"
- });
- this.selectSWorksData();
- })
- .catch(err => {
- console.error(err);
- });
- })
- .catch(() => {});
- },
- openCocoPi(tool, i, uid, uname) {
- // return console.log('?????',tool, i, uid, uname);
- let student = {
- userid: uid,
- student: uname
- };
- if (tool == 57) {
- window.parent.postMessage(
- {
- tools: tool + "teacher",
- cid: this.cid,
- stage: this.stage,
- task: this.task,
- tool: this.toolIndex,
- student: student
- },
- "*"
- );
- }
- },
- //全部作业
- selectSWorksData() {
- this.vLoading = true;
- this.textarea = "";
- let params = {
- uid: this.DgUid,
- cid: this.cid,
- s: this.stage,
- t: this.task,
- g: this.toolIndex
- };
- // return console.log(params);
- this.ajax
- .get(this.$store.state.api + "selectMarkDialogWorks", params)
- .then(res => {
- let data = res.data[0];
- data.forEach(e => {
- if (e.rate) {
- let data2 = JSON.parse(e.rate);
- e.markSco = 0;
- let k = 0
- for (const key in data2) {
- if (data2[key] && key != "content" || data2[key] == "0" ) {
- e.markSco += data2[key] * 1;
- }else{
- k += 1
- }
- }
-
- if (k > 1) {
- e.markSco = null;
- }else{
- e.markSco = (e.markSco / this.scoTitList.length).toFixed(1);
- }
- } else {
- e.markSco = null;
- }
- });
- this.workList = data;
- data.forEach((e, index) => {
- if (e.userid == this.DgUid) {
- this.currentUid = e;
- if (
- this.currentUid.type == 3 ||
- this.currentUid.type == 10 ||
- this.currentUid.type == 13
- // this.currentUid.type == 15
- ) {
- this.currentUid.content = JSON.parse(e.content);
- this.cuScoCon = this.currentUid.content.text;
- }
- if (this.currentUid.type == 4) {
- let a = this.currentUid.content;
- let data = a.slice(a.lastIndexOf(".") + 1);
- this.cuScoCon = this.currentUid.content;
- if (data == "pdf") {
- this.ifPdf = 1;
- } else {
- this.ifPdf = 0;
- }
- }
- if (this.currentUid.type == 5) {
- this.playerOptions.sources[0].src = this.currentUid.content;
- }
- this.current = index;
- this.workId = e.id;
- this.appraise(e);
- }
- });
- let likeData = res.data[1];
- this.likeList = [];
- likeData.forEach(e => {
- if (e.workId == this.workId) {
- this.likeList.push(e);
- }
- });
- let commentData = res.data[2];
- this.commentList = [];
- commentData.forEach(e => {
- if (e.workId == this.workId) {
- this.commentList.push(e);
- }
- });
- this.vLoading = false;
- });
- },
- selectSWorksData2() {
- this.vLoading = true;
- this.textarea = "";
- let params = {
- uid: this.DgUid,
- cid: this.cid,
- s: this.stage,
- t: this.task,
- g: this.toolIndex
- };
- // return console.log(params);
- this.ajax
- .get(this.$store.state.api + "selectMarkDialogWorks", params)
- .then(res => {
- let data = res.data[0];
- data.forEach(e => {
- if (e.rate) {
- let data2 = JSON.parse(e.rate);
- e.markSco = 0;
- let k = 0
- for (const key in data2) {
- if (data2[key] && key != "content" || data2[key] == "0" ) {
- e.markSco += data2[key] * 1;
- }else{
- k += 1
- }
- }
-
- if (k > 1) {
- e.markSco = null;
- }else{
- e.markSco = (e.markSco / this.scoTitList.length).toFixed(1);
- }
- } else {
- e.markSco = null;
- }
- });
- this.workList = data;
- data.forEach((e, index) => {
- if (e.userid == this.DgUid) {
- this.currentUid = e;
- if (
- this.currentUid.type == 3 ||
- this.currentUid.type == 10 ||
- this.currentUid.type == 13
- // this.currentUid.type == 15
- ) {
- this.currentUid.content = JSON.parse(e.content);
- this.cuScoCon = this.currentUid.content.text;
- }
- if (this.currentUid.type == 4) {
- let a = this.currentUid.content;
- let data = a.slice(a.lastIndexOf(".") + 1);
- this.cuScoCon = this.currentUid.content;
- if (data == "pdf") {
- this.ifPdf = 1;
- } else {
- this.ifPdf = 0;
- }
- }
- if (this.currentUid.type == 5) {
- this.playerOptions.sources[0].src = this.currentUid.content;
- }
- this.workId = e.id;
- this.appraise(e);
- }
- });
- let likeData = res.data[1];
- this.likeList = [];
- likeData.forEach(e => {
- if (e.workId == this.workId) {
- this.likeList.push(e);
- }
- });
- let commentData = res.data[2];
- this.commentList = [];
- commentData.forEach(e => {
- if (e.workId == this.workId) {
- this.commentList.push(e);
- }
- });
- this.vLoading = false;
- });
- },
-
- downloadFile(url) {
- var credentials = {
- accessKeyId: "AKIATLPEDU37QV5CHLMH",
- secretAccessKey: "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"
- }; //秘钥形式的登录上传
- window.AWS.config.update(credentials);
- window.AWS.config.region = "cn-northwest-1"; //设置区域
- let url2 = url;
- let _url2 = "";
- if (
- url2.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1
- ) {
- _url2 = url2.split(
- "https://view.officeapps.live.com/op/view.aspx?src="
- )[1];
- } else {
- _url2 = url2;
- }
- const loading2 = this.$loading.service({
- background: "rgba(255, 255, 255, 0.7)",
- target: document.body,
- text: "文件加载中..."
- });
- var s3 = new window.AWS.S3({ params: { Bucket: "ccrb" } });
- let name = decodeURIComponent(
- _url2.split("https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/")[1]
- );
- var params = {
- Bucket: "ccrb",
- Key: name
- };
- s3.getObject(params, function(err, data) {
- loading2.close();
- if (err) console.log(err, err.stack);
- // an error occurred
- else {
- let url = window.URL.createObjectURL(new Blob([data.Body]));
- let a = document.createElement("a");
- a.name = name;
- a.href = url;
- a.download = name;
- a.click();
- console.log(data);
- } // sxuccessful response
- });
- },
- // 处理任务的分展示
- appraise(val) {
- if (val.rate) {
-
- let data = JSON.parse(val.rate);
- this.scoTitList.forEach((e, index) => {
- e.cog = null;
- for (const key in data) {
- let result = e.detail.match(/[\u4e00-\u9fa5a-zA-Z]+/g).join("");
- let key2 = key.match(/[\u4e00-\u9fa5a-zA-Z]+/g).join("");
- if (result.indexOf(key2) != -1) {
- e.cog = data[key];
- }
- if ("content" == key) {
- this.textarea = data[key];
- }
- }
- });
- } else {
- this.scoTitList.forEach(e => {
- e.cog = 0;
- });
- }
- }
- }
- };
- </script>
- <style scoped>
- .markDialog {
- display: flex;
- /* height: 100%; */
- min-height: 600px;
- height: 100%;
- }
- .left {
- /* overflow: auto; */
- width: 310px;
- /* border-right: 1px rgba(231, 231, 231, 1) solid; */
- padding: 20px 20px 0;
- box-sizing: border-box;
- padding-right: 10px;
- display: flex;
- flex-direction: column;
- height: 100%;
- }
- .Rig {
- flex: 1;
- padding: 15px;
- display: flex;
- flex-direction: column;
- }
- .RigTop {
- border-bottom: 1px rgba(231, 231, 231, 1) solid;
- padding: 0px 0 15px;
- }
- .AreaCss {
- position: relative;
- margin-bottom: 5px;
- }
- .AreaCss >>> .el-textarea__inner {
- min-height: 150px !important;
- /* max-height: 150px; */
- /* padding-bottom: 20px; */
- }
- .AreaBtn {
- position: absolute;
- width: calc(100% - 30px);
- text-align: right;
- background-color: #fff;
- bottom: 11px;
- right: 20px;
- color: rgba(54, 129, 252, 1);
- cursor: pointer;
- }
- .likeList {
- width: 100%;
- display: flex;
- padding: 10px 0;
- flex-wrap: wrap;
- }
- .likeList > div {
- padding: 4px 0px;
- background-color: rgba(243, 247, 253, 1);
- margin-right: 10px;
- width: calc((100% - 60px) / 7);
- text-align: center;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- margin-bottom: 10px;
- }
- .likeList > div:nth-child(7n) {
- margin-right: 0px;
- }
- .commentListCss {
- background-color: #fafafa;
- padding: 25px 15px 0;
- box-sizing: border-box;
- margin-top: 10px;
- border-radius: 5px;
- }
- .RigConTit {
- width: 100%;
- display: flex;
- margin: 10px 0;
- }
- .RigConTit > div {
- font-size: 14px;
- color: rgba(0, 0, 0, 0.6);
- padding: 8px;
- cursor: pointer;
- }
- .RigConTitOn {
- border-bottom: 3px solid rgba(54, 129, 252, 1);
- }
- .RigCon {
- width: 100%;
- overflow: auto;
- flex: 1;
- padding: 10px 0;
- box-sizing: border-box;
- /* background-color: aqua; */
- }
- .selBlock {
- background-color: #f3f7fd !important;
- border: 1px #68a0fc solid !important;
- }
- .cutStuBtn {
- display: flex;
- color: rgba(54, 129, 252, 1);
- }
- .cutStuBtn > div {
- margin-left: 10px;
- }
- .scoreTit {
- font-size: 16px;
- font-weight: 600;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- color: rgba(0, 0, 0, 0.9);
- }
- .allD {
- margin: 10px 0;
- min-height: 60px;
- background-color: #f3f7fd;
- margin-left: 17px;
- }
- .scoreStar2 {
- padding: 0 10px 10px;
- height: 100%;
- flex: 1;
- color: rgba(54, 129, 252, 1);
- cursor: pointer;
- }
- .scoreStar {
- padding: 0px 10px 10px;
- height: 100%;
- flex: 1;
- }
- .scoreStarBack {
- flex: 1;
- display: flex;
- justify-content: space-between;
- padding-top: 10px;
- position: relative;
- }
- /* .scoreStar > div:first-child > .scoreStarBack {
- margin-top: 0;
- } */
- .ScrBtn {
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- padding: 2px 8px;
- border-radius: 5px;
- color: rgba(54, 129, 252, 1);
- border: 1px rgba(54, 129, 252, 1) solid;
- }
- .worksAnswer {
- color: #4078dd;
- margin: 10px 0;
- font-size: 16px;
- display: flex;
- align-items: center;
- cursor: pointer;
- }
- .worksAnswer > img {
- width: 100%;
- height: 300px;
- object-fit: contain;
- margin: 0 auto;
- display: block;
- }
- .briefTit {
- width: 120px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
-
- }
- .briefTit > .titRoot{
- position: absolute;
- top: 0;
- left: -27px;
- transform: translate(0,10px);
- }
- .workListTit {
- color: rgba(0, 0, 0, 0.6);
- font-size: 12px;
- font-weight: 400;
- margin: 10px 0;
- cursor: pointer;
- }
- .schPer2 {
- padding: 10px;
- box-sizing: border-box;
- display: flex;
- border-radius: 5px;
- border: 1px solid rgba(240, 242, 245, 1);
- /* margin-bottom: 10px; */
- }
- .schPer2 > img {
- width: 45px;
- height: 45px;
- border-radius: 50%;
- object-fit: cover;
- }
- .schPer {
- padding: 10px;
- box-sizing: border-box;
- display: flex;
- border-radius: 5px;
- border: 1px solid rgba(240, 242, 245, 1);
- margin-bottom: 10px;
- }
- .schPer > img {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- object-fit: cover;
- }
- .con {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 0 10px;
- box-sizing: border-box;
- }
- .con > .tit {
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .con > .tit2 {
- width: 100%;
- display: flex;
- margin-bottom: 15px;
- }
- .TitName {
- width: 70px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-right: 10px;
- }
- .worksAnswer {
- color: #4078dd;
- margin: 10px 0;
- font-size: 16px;
- position: relative;
- }
- .worksAnswer > img {
- width: 500px;
- height: 300px;
- object-fit: contain;
- margin: 0 auto;
- display: block;
- }
- .cont {
- overflow-wrap: break-word;
- word-break: break-word;
- white-space: pre-line;
- }
- .cont >>> table {
- border-top: 1px solid #ccc;
- border-left: 1px solid #ccc;
- }
- .cont >>> table td,
- .cont >>> table th {
- border-bottom: 1px solid #ccc;
- border-right: 1px solid #ccc;
- padding: 5px 10px;
- max-width: 0px;
- height: 30px;
- vertical-align: baseline;
- box-sizing: border-box;
- }
- .video-player >>> .video-js {
- height: 100%;
- }
- </style>
|