|
@@ -10,6 +10,7 @@
|
|
|
<div class="pb_head">
|
|
|
<span>项目数据看板</span>
|
|
|
<div style="display: flex;align-items: center;">
|
|
|
+ <!-- <el-button type="primary" size="small" @click="exportHtml" style="margin-right: 10px;">导出html</el-button> -->
|
|
|
<el-button type="primary" size="small" @click="exportExcel" style="margin-right: 10px;">导出Excel</el-button>
|
|
|
<el-switch v-model="mode" active-text="详情模式" inactive-text="简易模式">
|
|
|
</el-switch>
|
|
@@ -240,16 +241,21 @@
|
|
|
<div>{{ scope.row.lastTask ? scope.row.lastTask : '—' }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评审状态" prop="lastTask" width="80px" align="center">
|
|
|
+ <el-table-column label="评审状态" width="80px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.score ? '已评分' : '未评分' }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评审结果" prop="lastTask" width="80px" align="center">
|
|
|
+ <el-table-column label="评审结果" prop="score" width="80px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.score }}分</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="评审类型" prop="psType" width="80px" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>{{ scope.row.psType == '1' ? '造型结构' : scope.row.psType == '2' ? '开源硬件' : scope.row.psType == '3' ? '软件设计' : scope.row.psType == '4' ? '总分' : '—' }}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" width="150px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <div
|
|
@@ -466,8 +472,20 @@ export default {
|
|
|
}
|
|
|
if(_res[i].score){
|
|
|
var psJson = JSON.parse(_res[i].score)
|
|
|
- _res[i].score = psJson.cxx + psJson.sjyyssm + psJson.jsygn + psJson.yhty +
|
|
|
- psJson.zpwcdygfx
|
|
|
+ if(_res[i].psType == '1'){
|
|
|
+ _res[i].score = psJson.cxx + psJson.yssm + psJson.jsygn + psJson.kxdy +
|
|
|
+ psJson.zpwcd
|
|
|
+ }else if(_res[i].psType == '2'){
|
|
|
+ _res[i].score = psJson.cxx + psJson.yssm + psJson.jsygn + psJson.kxdd +
|
|
|
+ psJson.zpwcd
|
|
|
+ }else if(_res[i].psType == '3'){
|
|
|
+ _res[i].score = psJson.cxx + psJson.yssm + psJson.jsygn + psJson.kxdd +
|
|
|
+ psJson.zpwcd
|
|
|
+ }else if(_res[i].psType == '4'){
|
|
|
+ _res[i].score = psJson.z
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}else{
|
|
|
_res[i].score = 0
|
|
|
}
|
|
@@ -501,6 +519,7 @@ export default {
|
|
|
let array = _res.sort(function (a, b) {
|
|
|
return b.score - a.score;
|
|
|
});
|
|
|
+ console.log(array);
|
|
|
this.tableData = array.filter((item, index) => {
|
|
|
item.number = index + 1
|
|
|
return item;
|
|
@@ -615,10 +634,9 @@ export default {
|
|
|
_json["项目"] = res[i].course[0].title;
|
|
|
_json["分类"] = res[i].typename;
|
|
|
_json["学校"] = res[i].school;
|
|
|
- _json["负责人"] = res[i].username;
|
|
|
_json["协同人员"] = res[i].cteacher ? res[i].cteacher : '—';
|
|
|
_json["创建时间"] = res[i].ctime;
|
|
|
- _json["更新事件"] = res[i].time;
|
|
|
+ _json["更新时间"] = res[i].time;
|
|
|
_json["总计"] = `${res[i].jdz.taskC}任务 ${res[i].jdz.toolC}工具 ${res[i].jdz.fontC}字数`;
|
|
|
if (this.mode) {
|
|
|
_json["阶段1"] = res[i].jd1 ? res[i].brief : '—';
|
|
@@ -631,6 +649,9 @@ export default {
|
|
|
_json["项目简介"] = res[i].brief ? res[i].brief : '—';
|
|
|
}
|
|
|
_json["项目所处阶段"] = res[i].lastTask ? res[i].lastTask : '—';
|
|
|
+ _json["评审状态"] = res[i].score ? '已评分' : '未评分';
|
|
|
+ _json["评审结果"] = res[i].score + '分';
|
|
|
+ _json["评审类型"] = res[i].psType == '1' ? '造型结构' : res[i].psType == '2' ? '开源硬件' : res[i].psType == '3' ? '软件设计' : res[i].psType == '4' ? '总分' : '—';
|
|
|
array.push(_json);
|
|
|
}
|
|
|
|
|
@@ -653,12 +674,18 @@ export default {
|
|
|
type: "success",
|
|
|
});
|
|
|
},
|
|
|
+ async exportHtml(){
|
|
|
+ let res = this.tableData;
|
|
|
+ for (let i = 0; i < res.length; i++) {
|
|
|
+ await this.setMan(res[i])
|
|
|
+ }
|
|
|
+ },
|
|
|
exportCourse(course, Man) {
|
|
|
// 项目名称、项目创建人、协同人员、创建时间、修改时间、所属赛道、所属主题、项目详情简介;项目阶段数量、项目任务数量、项目进展
|
|
|
// if possible 项目所处阶段、各阶段负责人/任务周期/协同者/任务描述/项目方案
|
|
|
let _course = `<h1>${course.course[0].title}</h1>`
|
|
|
let _people = `<h2>负责人:${course.username}</h2>`
|
|
|
- let _cteacher = `<h3>负责人:${course.cteacher}</h3>`
|
|
|
+ let _cteacher = `<h3>协同人员:${course.cteacher ? course.cteacher : '—'}</h3>`
|
|
|
let _time = `<h2>创建时间:${course.ctime} 修改时间:${course.time}</h2>`
|
|
|
let _type = `<h2>分类:${course.typename}</h2>`
|
|
|
let _detail = `<h2>项目详情:${course.brief}</h2>`
|
|
@@ -671,7 +698,7 @@ export default {
|
|
|
let _chapter = JSON.parse(course.chapters)
|
|
|
let chapterHTML = ''
|
|
|
for (var i = 0; i < _chapter.length; i++) {
|
|
|
- chapterHTML += `<h2>第${i + 1}阶段-${_chapter[i].dyName}</h2>`
|
|
|
+ chapterHTML += `<h2 style="border-top: 1px solid #ddd;padding: 10px 0 0 0;">第${i + 1}阶段-${_chapter[i].dyName}</h2>`
|
|
|
let taskJson = _chapter[i].chapterInfo[0].taskJson
|
|
|
for (var j = 0; j < taskJson.length; j++) {
|
|
|
chapterHTML += `<h3>任务${j + 1}-${taskJson[j].task}</h3>`
|
|
@@ -736,7 +763,7 @@ export default {
|
|
|
}
|
|
|
return _people ? _people : "";
|
|
|
},
|
|
|
- setMan(course) {
|
|
|
+ async setMan(course) {
|
|
|
// let teacherJuri = this.teacherJuri2;
|
|
|
this.ManAarray = [];
|
|
|
let array = course.course_teacher.split(",")
|
|
@@ -746,14 +773,8 @@ export default {
|
|
|
let params = {
|
|
|
uid: array.join(","),
|
|
|
};
|
|
|
- this.ajax
|
|
|
- .get(this.$store.state.api + "getAllUserById", params)
|
|
|
- .then((res) => {
|
|
|
- this.exportCourse(course, res.data[0])
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.error(err);
|
|
|
- });
|
|
|
+ const res = await this.ajax.get(this.$store.state.api + "getAllUserById", params)
|
|
|
+ this.exportCourse(course, res.data[0])
|
|
|
},
|
|
|
async generate(a, html) {
|
|
|
// 将html文件中需要用到的数据挂载到store上
|