|
@@ -41,16 +41,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="student_table">
|
|
|
- <div
|
|
|
- style="
|
|
|
- padding: 15px 0;
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- flex-wrap: wrap;
|
|
|
- align-items: center;
|
|
|
- justify-content: flex-start;
|
|
|
- "
|
|
|
- >
|
|
|
+ <div class="boxCss">
|
|
|
<div
|
|
|
class="out_box"
|
|
|
v-for="(item, index) in chapInfoNew"
|
|
@@ -113,54 +104,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div v-if="this.choose == 1" style="padding: 15px 5px; display: flex">
|
|
|
- <div class="out_box" v-for="(item, index) in chapInfo" :key="index">
|
|
|
- <div class="tup">
|
|
|
- <img
|
|
|
- :src="msp"
|
|
|
- alt=""
|
|
|
- @click="
|
|
|
- handlePictureCardPreview1(JSON.parse(item.chapdataInfo).url)
|
|
|
- "
|
|
|
- />
|
|
|
- <div class="deleteWord" @click="deleteM(item.id)">
|
|
|
- <img src="../assets/icon/deleteL.png" alt="" />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="bottom_box">
|
|
|
- <div>
|
|
|
- {{
|
|
|
- item.chapdataInfo
|
|
|
- ? JSON.parse(item.chapdataInfo).name
|
|
|
- : "图片暂无名称"
|
|
|
- }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div v-if="this.choose == 2" style="padding: 15px 5px; display: flex">
|
|
|
- <div class="out_box" v-for="(item, index) in chapInfo" :key="index">
|
|
|
- <div class="tup">
|
|
|
- <img
|
|
|
- :src="mfj"
|
|
|
- alt=""
|
|
|
- @click="downFile(JSON.parse(item.chapdataInfo).url)"
|
|
|
- />
|
|
|
- <div class="deleteWord" @click="deleteM(item.id)">
|
|
|
- <img src="../assets/icon/deleteL.png" alt="" />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="bottom_box">
|
|
|
- <div>
|
|
|
- {{
|
|
|
- item.chapdataInfo
|
|
|
- ? JSON.parse(item.chapdataInfo).name
|
|
|
- : "图片暂无名称"
|
|
|
- }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div> -->
|
|
|
</div>
|
|
|
<div class="student_page">
|
|
|
<el-pagination
|
|
@@ -439,7 +382,7 @@ export default {
|
|
|
|
|
|
.three > div {
|
|
|
cursor: pointer;
|
|
|
- margin-right: 20px;
|
|
|
+ margin-right: 55px;
|
|
|
}
|
|
|
|
|
|
.choose {
|
|
@@ -449,6 +392,7 @@ export default {
|
|
|
.student_table {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
+ background: #f2f2f2;
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
|
|
@@ -486,6 +430,7 @@ export default {
|
|
|
width: 250px;
|
|
|
padding: 10px 0;
|
|
|
background: #fff;
|
|
|
+ margin: 0 0 20px 25px;
|
|
|
}
|
|
|
|
|
|
.bottom_box {
|
|
@@ -520,4 +465,12 @@ export default {
|
|
|
.student_page {
|
|
|
margin-top: 30px;
|
|
|
}
|
|
|
+.boxCss {
|
|
|
+ padding: 15px 0;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-start;
|
|
|
+}
|
|
|
</style>
|