|
@@ -35,6 +35,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="personAndAutor">
|
|
|
+ <div>总人数:</div>
|
|
|
<div class="people">
|
|
|
<div class="man">
|
|
|
<img src="../../../../assets/people.png" alt />
|
|
@@ -48,13 +49,13 @@
|
|
|
}}人
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="autorBox" v-if="anliBox[0].info.autor.length">
|
|
|
+ <div
|
|
|
+ class="autorBox"
|
|
|
+ style="margin-left: 15px"
|
|
|
+ v-if="anliBox[0].info.autor.length"
|
|
|
+ >
|
|
|
<div>联系人:</div>
|
|
|
- <div
|
|
|
- class="Autor"
|
|
|
- v-for="(a, aIndex) in anliBox[0].info.autor"
|
|
|
- :key="aIndex"
|
|
|
- >
|
|
|
+ <div v-for="(a, aIndex) in anliBox[0].info.autor" :key="aIndex">
|
|
|
{{ a.sn }}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -876,10 +877,18 @@
|
|
|
{{ jd.allTime }}课时
|
|
|
</div>
|
|
|
<div class="funBlock" style="padding: 0; bottom: 2px">
|
|
|
- <div class="fold" @click="fold1(jdIndex, $event, 1)">
|
|
|
+ <div
|
|
|
+ class="fold"
|
|
|
+ @click="fold1(jdIndex, $event, 1)"
|
|
|
+ v-if="jd.isFold == 0"
|
|
|
+ >
|
|
|
<div>折叠</div>
|
|
|
</div>
|
|
|
- <div class="fold" @click="fold1(jdIndex, $event, 0)">
|
|
|
+ <div
|
|
|
+ class="fold"
|
|
|
+ @click="fold1(jdIndex, $event, 0)"
|
|
|
+ v-if="jd.isFold == 1"
|
|
|
+ >
|
|
|
<div>展开</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -915,12 +924,14 @@
|
|
|
<div
|
|
|
class="fold"
|
|
|
@click="fold(hdIndex, jdIndex, $event, 1)"
|
|
|
+ v-if="hd.isFold == 0"
|
|
|
>
|
|
|
<div>折叠</div>
|
|
|
</div>
|
|
|
<div
|
|
|
class="fold"
|
|
|
@click="fold(hdIndex, jdIndex, $event, 0)"
|
|
|
+ v-if="hd.isFold == 1"
|
|
|
>
|
|
|
<div>展开</div>
|
|
|
</div>
|
|
@@ -2684,6 +2695,7 @@ export default {
|
|
|
a.className = "taskBorder";
|
|
|
b.className = "funBlock";
|
|
|
}
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
fold1(i, e, type) {
|
|
|
var a =
|
|
@@ -2698,6 +2710,7 @@ export default {
|
|
|
a.className = "taskBorder";
|
|
|
b.className = "funBlock";
|
|
|
}
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
},
|
|
|
created() {
|
|
@@ -2838,7 +2851,7 @@ body {
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
background: #fff;
|
|
|
- width: 80%;
|
|
|
+ width: 75%;
|
|
|
margin: 0 auto;
|
|
|
height: 70px;
|
|
|
border-radius: 10px;
|
|
@@ -2888,7 +2901,7 @@ body {
|
|
|
height: 100%;
|
|
|
}
|
|
|
.messageBox {
|
|
|
- width: 80%;
|
|
|
+ width: 75%;
|
|
|
margin: 1% auto;
|
|
|
}
|
|
|
.whiteBg {
|
|
@@ -3045,7 +3058,7 @@ body {
|
|
|
position: relative;
|
|
|
}
|
|
|
.file > div > div:nth-child(2) > div:nth-child(1) {
|
|
|
- width: 360px;
|
|
|
+ width: 250px;
|
|
|
white-space: nowrap;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
@@ -3287,7 +3300,7 @@ body {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
flex-wrap: nowrap;
|
|
|
- align-items: center;
|
|
|
+ align-items: baseline;
|
|
|
margin-left: 10px;
|
|
|
}
|
|
|
.Autor {
|