|
@@ -172,6 +172,15 @@
|
|
|
<div>{{ s.staTitle }}</div>
|
|
|
</div>
|
|
|
<div class="navBTitle" @click="jump('fouth')">3、项目活动过程</div>
|
|
|
+ <div
|
|
|
+ class="navLTitle"
|
|
|
+ v-for="(sa, sib) in anliBox[0].process.stageBox"
|
|
|
+ :key="sib"
|
|
|
+ @click="jumpB(sib)"
|
|
|
+ >
|
|
|
+ <div>1.{{ sib + 1 }}</div>
|
|
|
+ <div>阶段{{ sib + 1 }}</div>
|
|
|
+ </div>
|
|
|
<div class="navBTitle" @click="jump('fivth')">
|
|
|
4、项目成果交流与评价
|
|
|
</div>
|
|
@@ -354,7 +363,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 0)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.infoType ==
|
|
|
+ pptImgUrl1.infoData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 0, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -560,7 +578,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 1)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.overType.driType ==
|
|
|
+ pptImgUrl1.overData.driData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 1, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -750,7 +777,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 2)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.overType.tarType ==
|
|
|
+ pptImgUrl1.overData.tarData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 2, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -939,7 +975,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 3)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.overType.actType ==
|
|
|
+ pptImgUrl1.overData.actData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 3, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -1380,6 +1425,7 @@
|
|
|
<div
|
|
|
class="proOverCss"
|
|
|
v-if="jd.brief != '' || jd.imgBox.length > 0 || jd.data.length"
|
|
|
+ :id="'jdb' + jdIndex"
|
|
|
>
|
|
|
<div class="whiteBg whiteLeft">
|
|
|
<div class="navBgTop">
|
|
@@ -1509,8 +1555,20 @@
|
|
|
placement="top"
|
|
|
>
|
|
|
<div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.proType ==
|
|
|
+ pptImgUrl1.proData[jdIndex][fIndex]
|
|
|
+ .id,
|
|
|
+ }"
|
|
|
@click="
|
|
|
- lookFile2(f.url, f.type, 4, jdIndex)
|
|
|
+ lookFile2(
|
|
|
+ f.url,
|
|
|
+ f.type,
|
|
|
+ 4,
|
|
|
+ jdIndex,
|
|
|
+ fIndex
|
|
|
+ )
|
|
|
"
|
|
|
>
|
|
|
{{ f.name }}
|
|
@@ -1710,7 +1768,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 5)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.excType ==
|
|
|
+ pptImgUrl1.excData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 5, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -1905,7 +1972,16 @@
|
|
|
:content="f.name"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <div @click="lookFile2(f.url, f.type, 6)">
|
|
|
+ <div
|
|
|
+ :class="{
|
|
|
+ openTaskActive:
|
|
|
+ pptImgUrl1.fileType.effType ==
|
|
|
+ pptImgUrl1.effData[fIndex].id,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ lookFile2(f.url, f.type, 6, '', fIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ f.name }}
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -2046,6 +2122,17 @@ export default {
|
|
|
briefNav: "",
|
|
|
pptImgUrl: "",
|
|
|
pptImgUrl1: {
|
|
|
+ fileType: {
|
|
|
+ infoType: "",
|
|
|
+ overType: {
|
|
|
+ driType: "",
|
|
|
+ tarType: "",
|
|
|
+ actType: "",
|
|
|
+ },
|
|
|
+ proType: "",
|
|
|
+ excType: "",
|
|
|
+ effType: "",
|
|
|
+ },
|
|
|
infoData: [],
|
|
|
overData: {
|
|
|
driData: [],
|
|
@@ -2164,6 +2251,7 @@ export default {
|
|
|
this.pptImgUrl1.infoData.push({
|
|
|
url: a.data[i].url,
|
|
|
type: a.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2177,6 +2265,7 @@ export default {
|
|
|
this.pptImgUrl1.overData.driData.push({
|
|
|
url: b.driQuestion.data[i].url,
|
|
|
type: b.driQuestion.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2190,6 +2279,7 @@ export default {
|
|
|
this.pptImgUrl1.overData.tarData.push({
|
|
|
url: b.tarDesign.data[i].url,
|
|
|
type: b.tarDesign.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2203,6 +2293,7 @@ export default {
|
|
|
this.pptImgUrl1.overData.actData.push({
|
|
|
url: b.actiDesign.data[i].url,
|
|
|
type: b.actiDesign.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2221,6 +2312,7 @@ export default {
|
|
|
this.pptImgUrl1.proData[i].push({
|
|
|
url: c.stageBox[i].data[j].url,
|
|
|
type: c.stageBox[i].data[j].type,
|
|
|
+ id: j + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2288,6 +2380,7 @@ export default {
|
|
|
this.pptImgUrl1.excData.push({
|
|
|
url: e.data[i].url,
|
|
|
type: e.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2298,6 +2391,7 @@ export default {
|
|
|
this.pptImgUrl1.effData.push({
|
|
|
url: f.data[i].url,
|
|
|
type: f.data[i].type,
|
|
|
+ id: i + 1,
|
|
|
proVisible: false,
|
|
|
});
|
|
|
}
|
|
@@ -2356,7 +2450,7 @@ export default {
|
|
|
this.videoVisible = true;
|
|
|
}
|
|
|
},
|
|
|
- lookFile2(u, t, type, i) {
|
|
|
+ lookFile2(u, t, type, i, j) {
|
|
|
var b = [
|
|
|
"DOC",
|
|
|
"DOCX",
|
|
@@ -2420,6 +2514,7 @@ export default {
|
|
|
this.pptImgUrl2.infoData.playerO = d;
|
|
|
this.pptImgUrl2.infoData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.infoType = j + 1;
|
|
|
} else if (type == 1) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2446,6 +2541,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.driData.playerO = d;
|
|
|
this.pptImgUrl2.overData.driData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.driType = j + 1;
|
|
|
} else if (type == 2) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2472,6 +2568,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.tarData.playerO = d;
|
|
|
this.pptImgUrl2.overData.tarData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.tarType = j + 1;
|
|
|
} else if (type == 3) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2498,6 +2595,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.actData.playerO = d;
|
|
|
this.pptImgUrl2.overData.actData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.actType = j + 1;
|
|
|
} else if (type == 4) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2524,6 +2622,7 @@ export default {
|
|
|
this.pptImgUrl2.proData[i].playerO = d;
|
|
|
this.pptImgUrl2.proData[i].playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.proType = j + 1;
|
|
|
} else if (type == 5) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2550,6 +2649,7 @@ export default {
|
|
|
this.pptImgUrl2.excData.playerO = d;
|
|
|
this.pptImgUrl2.excData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.excType = j + 1;
|
|
|
} else if (type == 6) {
|
|
|
if (
|
|
|
b.indexOf(
|
|
@@ -2576,6 +2676,7 @@ export default {
|
|
|
this.pptImgUrl2.effData.playerO = d;
|
|
|
this.pptImgUrl2.effData.playerO.sources[0].src = u;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.effType = j + 1;
|
|
|
}
|
|
|
},
|
|
|
lookFile() {
|
|
@@ -2656,6 +2757,7 @@ export default {
|
|
|
this.pptImgUrl2.infoData.url;
|
|
|
this.pptImgUrl2.infoData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.infoType = 1;
|
|
|
}
|
|
|
|
|
|
this.pptImgUrl2.overData.driData = a.overData.driData
|
|
@@ -2699,6 +2801,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.driData.url;
|
|
|
this.pptImgUrl2.overData.driData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.driType = 1;
|
|
|
}
|
|
|
|
|
|
this.pptImgUrl2.overData.tarData = a.overData.tarData
|
|
@@ -2742,6 +2845,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.tarData.url;
|
|
|
this.pptImgUrl2.overData.tarData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.tarType = 1;
|
|
|
}
|
|
|
|
|
|
this.pptImgUrl2.overData.actData = a.overData.actData
|
|
@@ -2785,6 +2889,7 @@ export default {
|
|
|
this.pptImgUrl2.overData.actData.url;
|
|
|
this.pptImgUrl2.overData.actData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.overType.actType = 1;
|
|
|
}
|
|
|
for (var i = 0; i < a.proData.length; i++) {
|
|
|
this.pptImgUrl2.proData[i] = a.proData[i] ? a.proData[i][0] : {};
|
|
@@ -2826,6 +2931,7 @@ export default {
|
|
|
this.pptImgUrl2.proData[i].url;
|
|
|
this.pptImgUrl2.proData[i].showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.proType = 1;
|
|
|
}
|
|
|
}
|
|
|
this.pptImgUrl2.excData = a.excData ? a.excData[0] : {};
|
|
@@ -2867,6 +2973,7 @@ export default {
|
|
|
this.pptImgUrl2.excData.url;
|
|
|
this.pptImgUrl2.excData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.excType = 1;
|
|
|
}
|
|
|
this.pptImgUrl2.effData = a.effData ? a.effData[0] : {};
|
|
|
if (a.effData.length > 0) {
|
|
@@ -2907,6 +3014,7 @@ export default {
|
|
|
this.pptImgUrl2.effData.url;
|
|
|
this.pptImgUrl2.effData.showType = 3;
|
|
|
}
|
|
|
+ this.pptImgUrl1.fileType.effType = 1;
|
|
|
}
|
|
|
},
|
|
|
// downloadFile(url) {
|
|
@@ -2959,6 +3067,11 @@ export default {
|
|
|
var b = this.$refs["cenBox"];
|
|
|
b.scrollTop = a.offsetTop - 70;
|
|
|
},
|
|
|
+ jumpB(i) {
|
|
|
+ var a = document.getElementById("jdb" + i);
|
|
|
+ var b = this.$refs["cenBox"];
|
|
|
+ b.scrollTop = a.offsetTop - 70;
|
|
|
+ },
|
|
|
reTop() {
|
|
|
var a = this.$refs["cenBox"];
|
|
|
a.scrollTop = 0;
|
|
@@ -3088,12 +3201,6 @@ export default {
|
|
|
.navTop {
|
|
|
margin: 0 5px !important;
|
|
|
}
|
|
|
- /* .navTop > div:nth-child(2) {
|
|
|
- width: 60px !important;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- } */
|
|
|
.navBox {
|
|
|
margin: 0 0 0 28% !important;
|
|
|
}
|
|
@@ -3103,12 +3210,6 @@ export default {
|
|
|
.proOverNav {
|
|
|
width: 94% !important;
|
|
|
}
|
|
|
- /* .proOverNav {
|
|
|
- width: 52% !important;
|
|
|
- } */
|
|
|
- /* .fileBox {
|
|
|
- width: auto !important;
|
|
|
- } */
|
|
|
.look_file {
|
|
|
width: 55% !important;
|
|
|
}
|
|
@@ -3119,10 +3220,6 @@ export default {
|
|
|
.isleftNav {
|
|
|
top: 55% !important;
|
|
|
}
|
|
|
- /* .navLeftBox {
|
|
|
- height: 400px !important;
|
|
|
- overflow: auto !important;
|
|
|
- } */
|
|
|
.isNavBox {
|
|
|
left: 22% !important;
|
|
|
}
|
|
@@ -3361,19 +3458,18 @@ body {
|
|
|
width: 100%;
|
|
|
}
|
|
|
.proOverNav {
|
|
|
- overflow: auto;
|
|
|
word-break: break-word;
|
|
|
margin-left: 10px;
|
|
|
width: 95.5%;
|
|
|
padding: 0 10px 10px 0;
|
|
|
border-radius: 5px;
|
|
|
height: auto;
|
|
|
- max-height: 500px;
|
|
|
+ /* max-height: 500px; */
|
|
|
line-height: 30px;
|
|
|
padding: 10px;
|
|
|
background: #f7f7f7;
|
|
|
margin: 10px auto 0;
|
|
|
- overflow: auto;
|
|
|
+ /* overflow: auto; */
|
|
|
}
|
|
|
.noImg {
|
|
|
max-height: 300px;
|
|
@@ -3893,7 +3989,7 @@ ol {
|
|
|
border-bottom-left-radius: 5px;
|
|
|
border-bottom-right-radius: 5px;
|
|
|
box-sizing: border-box;
|
|
|
- height: 460px;
|
|
|
+ height: 560px;
|
|
|
overflow-y: auto;
|
|
|
overflow-x: hidden;
|
|
|
}
|
|
@@ -3976,4 +4072,7 @@ ol {
|
|
|
border-radius: 10px;
|
|
|
padding: 20px 0;
|
|
|
}
|
|
|
+.openTaskActive {
|
|
|
+ color: #4386e6;
|
|
|
+}
|
|
|
</style>
|