|
|
|
@ -98,10 +98,15 @@ |
|
|
|
<div class="rightList"> |
|
|
|
|
|
|
|
<div class="rightListContent" v-if="this.userType==0"> |
|
|
|
<div class="oneRight" v-for="item in contentList" :key="item"> |
|
|
|
<div class="oneRight" v-for="item in contentList" :key="item.id"> |
|
|
|
<div style="width: 8%;">{{ item.id }}</div> |
|
|
|
<div style="width: 22%;">{{ item.name }}</div> |
|
|
|
<div style="width: 60%;">图片</div> |
|
|
|
<div style="width: 60%;display: flex;flex-direction: row;"> |
|
|
|
<div v-for="item1 in item.imgList" :key="item1"> |
|
|
|
<img :src="item1.imgUrl" |
|
|
|
style="height: 5vw;object-fit: contain;justify-content: flex-start;margin-left: 1vw;border-radius: 1vw;"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div style="width: 10%;text-decoration: underline;font-style: italic;" @click="goXq(item.id)"> |
|
|
|
点击查看详情 |
|
|
|
</div> |
|
|
|
@ -274,6 +279,7 @@ export default { |
|
|
|
} |
|
|
|
getDocList(data).then((res) => { |
|
|
|
if (res.code != 500) { |
|
|
|
|
|
|
|
if(res.data.list!=undefined){ |
|
|
|
this.contentList = res.data.list; |
|
|
|
this.total = res.data.total; |
|
|
|
|