|
@@ -55,9 +55,13 @@
|
|
|
class="xmjj"
|
|
|
v-if="JSON.parse(an.overview).courseText"
|
|
|
v-html="JSON.parse(an.overview).courseText"
|
|
|
+ ></div>
|
|
|
+ <div
|
|
|
+ v-if="
|
|
|
+ JSON.parse(an.overview).courseText &&
|
|
|
+ JSON.parse(an.overview).courseText.length > 90
|
|
|
+ "
|
|
|
>
|
|
|
- </div>
|
|
|
- <div v-if="JSON.parse(an.overview).courseText && JSON.parse(an.overview).courseText.length > 90">
|
|
|
<div
|
|
|
class="selectJj"
|
|
|
@click="selectJj(anIndex, 1)"
|
|
@@ -161,7 +165,7 @@
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
- props: ["userid", "oid","org", "type"],
|
|
|
+ props: ["userid", "oid", "org", "type"],
|
|
|
data() {
|
|
|
return {
|
|
|
isLoading: false,
|
|
@@ -179,7 +183,7 @@ export default {
|
|
|
uid: this.userid,
|
|
|
t: this.type,
|
|
|
oid: this.oid,
|
|
|
- org: this.org
|
|
|
+ org: this.org,
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "selectRaceList1", params)
|
|
@@ -397,15 +401,15 @@ export default {
|
|
|
exportAnli(res) {
|
|
|
console.log(res);
|
|
|
let _html = "";
|
|
|
- var _title = "<h1>项目基础信息</h1>";
|
|
|
+ var _title = "<h1>课程基础信息</h1>";
|
|
|
let info = JSON.parse(res.info);
|
|
|
_title += `
|
|
|
<iframe style="display: none;" name="downloadFile"></iframe>
|
|
|
- <h2>项目名称:${info.title}</h2>
|
|
|
+ <h2>课程名称:${info.title}</h2>
|
|
|
`;
|
|
|
_title += `<h3>比赛类别:${res.typename}</h3>`;
|
|
|
_title += `<h4>单位:${res.schoolName}</h4>`;
|
|
|
- _title += `<div>项目简介:${info.courseText}</div>`;
|
|
|
+ // _title += `<div>项目简介:${info.courseText}</div>`;
|
|
|
_title += `<h4>文件:`;
|
|
|
var _div = document.createElement("div");
|
|
|
for (var i = 0; i < info.data.length; i++) {
|
|
@@ -418,63 +422,62 @@ export default {
|
|
|
let overview = JSON.parse(res.overview);
|
|
|
var _overview = "<h1>项目概况</h1>";
|
|
|
var oArray = [
|
|
|
- { j: "driQuestion", name: "驱动性问题" },
|
|
|
- { j: "tarDesign", name: "学习目标" },
|
|
|
- { j: "actiDesign", name: "评价设计" },
|
|
|
- // { j: "evaDesign", name: "评价设计" },
|
|
|
- // { j: "other", name: "其他补充" },
|
|
|
+ { courseText: overview.courseText },
|
|
|
+ { j: "driQuestion", name: "课程资源分析" },
|
|
|
+ { j: "tarDesign", name: "课程目标" },
|
|
|
+ { j: "eventDesign", name: "活动安排" },
|
|
|
+ { j: "evaDesign", name: "评价形式" },
|
|
|
+ { j: "refDesign", name: "主要参考文献" },
|
|
|
+ { j: "noteDesign", name: "备注" },
|
|
|
];
|
|
|
for (var k = 0; k < oArray.length; k++) {
|
|
|
- _overview += `<h2>${oArray[k].name}</h2>`;
|
|
|
- // <a :href="`${完整的下载地址}`" onclick="downloadFile2>{{文件名称}}</a>
|
|
|
- // <iframe style="display: none;" name="downloadFile"></iframe>
|
|
|
- _overview += `<div>${overview[oArray[k].j].brief}</div>`;
|
|
|
- var _div = document.createElement("div");
|
|
|
- for (var i = 0; i < overview[oArray[k].j].data.length; i++) {
|
|
|
- var _div2 = document.createElement("div");
|
|
|
- _div2.innerHTML = ` <a href="JavaScript:void(0)" onclick="downloadFile2('${
|
|
|
- overview[oArray[k].j].data[i].url
|
|
|
- }')">${overview[oArray[k].j].data[i].name}</a>`;
|
|
|
- _div.appendChild(_div2);
|
|
|
+ if (k == 0) {
|
|
|
+ _overview += `<h2>项目简介</h2>`;
|
|
|
+ _overview += `<div>${overview.courseText}</div>`;
|
|
|
+ } else {
|
|
|
+ _overview += `<h2>${oArray[k].name}</h2>`;
|
|
|
+ // <a :href="`${完整的下载地址}`" onclick="downloadFile2>{{文件名称}}</a>
|
|
|
+ // <iframe style="display: none;" name="downloadFile"></iframe>
|
|
|
+ _overview += `<div>${overview[oArray[k].j].brief}</div>`;
|
|
|
+ var _div = document.createElement("div");
|
|
|
+ for (var i = 0; i < overview[oArray[k].j].data.length; i++) {
|
|
|
+ var _div2 = document.createElement("div");
|
|
|
+ _div2.innerHTML = ` <a href="JavaScript:void(0)" onclick="downloadFile2('${
|
|
|
+ overview[oArray[k].j].data[i].url
|
|
|
+ }')">${overview[oArray[k].j].data[i].name}</a>`;
|
|
|
+ _div.appendChild(_div2);
|
|
|
+ }
|
|
|
+ _overview += `<div>${_div.innerHTML}</div>`;
|
|
|
}
|
|
|
- _overview += `<div>${_div.innerHTML}</div>`;
|
|
|
}
|
|
|
-
|
|
|
- let process = JSON.parse(res.process).stageBox;
|
|
|
+ let process = JSON.parse(res.process).actBox;
|
|
|
var _process = "<h1>项目安排</h1>";
|
|
|
for (var pz = 0; pz < process.length; pz++) {
|
|
|
- _process += `<h2>阶段${pz + 1}:${process[pz].staTitle}</h2>`;
|
|
|
- _process += `<h2>总课时:${process[pz].allTime}</h2>`;
|
|
|
- let _act = process[pz].actBox;
|
|
|
- for (var z = 0; z < _act.length; z++) {
|
|
|
- _process += `<h2>活动${z + 1}</h2>`;
|
|
|
- _process += `<h3>活动名称:${_act[z].actName} 时长:${_act[z].actTime}</h3>`;
|
|
|
+ _process += `<h2>环节${pz + 1}:${process[pz].actName}</h2>`;
|
|
|
let pAarray = [
|
|
|
- { j: "driQuestion", name: "活动目标" },
|
|
|
- { j: "tarDesign", name: "活动内容" },
|
|
|
- { j: "actiDesign", name: "预期成果" },
|
|
|
- { j: "evaDesign", name: "活动评价" },
|
|
|
+ { j: "driQuestion", name: "教学内容" },
|
|
|
+ { j: "tarDesign", name: "实施要求" },
|
|
|
+ { j: "actiDesign", name: "设计意图" },
|
|
|
];
|
|
|
for (var i = 0; i < pAarray.length; i++) {
|
|
|
_process += `<h3>${pAarray[i].name}</h3>`;
|
|
|
_process += `<div>描述</div>`;
|
|
|
- _process += `<div>${_act[z][pAarray[i].j].brief}</div>`;
|
|
|
+ _process += `<div>${process[pz][pAarray[i].j].brief}</div>`;
|
|
|
_process += `<div>资料补充</div>`;
|
|
|
var _div = document.createElement("div");
|
|
|
- for (var c = 0; c < _act[z][pAarray[i].j].data.length; c++) {
|
|
|
+ for (var c = 0; c < process[pz][pAarray[i].j].data.length; c++) {
|
|
|
var _div2 = document.createElement("div");
|
|
|
_div2.innerHTML = ` <a href="JavaScript:void(0)" onclick="downloadFile2('${
|
|
|
- _act[z][pAarray[i].j].data[c].url
|
|
|
- }')">${_act[z][pAarray[i].j].data[c].name}</a>`;
|
|
|
+ _process[pz][pAarray[i].j].data[c].url
|
|
|
+ }')">${process[pz][pAarray[i].j].data[c].name}</a>`;
|
|
|
_div.appendChild(_div2);
|
|
|
}
|
|
|
_process += `<div>${_div.innerHTML}</div>`;
|
|
|
}
|
|
|
- }
|
|
|
}
|
|
|
- let _proact = "<h1>项目过程记录</h1>";
|
|
|
+ let _proact = "<h1>过程记录</h1>";
|
|
|
for (var pz = 0; pz < process.length; pz++) {
|
|
|
- _proact += `<h2>阶段${pz + 1}</h2>`;
|
|
|
+ _proact += `<h2>环节${pz + 1}</h2>`;
|
|
|
_proact += `<h2>描述</h2>`;
|
|
|
_proact += `<div>${process[pz].brief}</div>`;
|
|
|
_proact += `<h4>附件:`;
|
|
@@ -488,7 +491,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
let proexc = JSON.parse(res.proexc);
|
|
|
- let _proexc = "<h1>项目成效</h1>";
|
|
|
+ let _proexc = "<h1>成果与评价</h1>";
|
|
|
_proexc += `<div>描述</div>`;
|
|
|
_proexc += `<div>${proexc.brief}</div>`;
|
|
|
_proexc += `<div>附件</div>`;
|
|
@@ -501,7 +504,7 @@ export default {
|
|
|
_proexc += `<div>${_div.innerHTML}</div>`;
|
|
|
|
|
|
let results = JSON.parse(res.results);
|
|
|
- let _results = "<h1>项目反思</h1>";
|
|
|
+ let _results = "<h1>成效与反思</h1>";
|
|
|
_results += `<div>描述</div>`;
|
|
|
_results += `<div>${results.brief}</div>`;
|
|
|
_results += `<div>附件</div>`;
|
|
@@ -552,10 +555,7 @@ export default {
|
|
|
this.$router.push(path);
|
|
|
},
|
|
|
lookDetail(aid) {
|
|
|
- this.goTo(
|
|
|
- "/anliDetail?aid=" +
|
|
|
- aid
|
|
|
- );
|
|
|
+ this.goTo("/anliDetail?aid=" + aid);
|
|
|
// window.open(
|
|
|
// window.location.origin +
|
|
|
// window.location.pathname +
|