Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f809973769 | ||
|
|
ec58f73490 | ||
|
|
7a0bd692f4 | ||
|
|
b95a1ad396 | ||
|
|
db99bc4065 | ||
|
|
79877464fb | ||
|
|
10f4dfae6a | ||
|
|
a304ccf181 | ||
|
|
7965e681a5 |
@ -78,8 +78,23 @@ v-show="voting">
|
||||
<div class="title">{{ item.article_title }}</div>
|
||||
<div>
|
||||
<div class='name'>
|
||||
<div v-for="auther in item.article_author">
|
||||
<div>{{ auther.author_name}} {{ auther.hospital_name }}</div>
|
||||
<div v-for="auther in item.article_author" style="display: flex;align-items: center;">
|
||||
<div style="flex: 1;" v-if="auther.author_avatar" >
|
||||
<van-image
|
||||
:src="auther.author_avatar"
|
||||
width="40"
|
||||
height="40"
|
||||
fit="cover"
|
||||
round
|
||||
style="margin-right: 8px;"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div style="display: flex;flex-direction: column;flex: 4;">
|
||||
<div>{{ auther.author_name}}</div>
|
||||
<div>{{ auther.hospital_name }}</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -142,8 +157,22 @@ v-show="voting">
|
||||
<div class="title">{{ item.video_title }}</div>
|
||||
<div>
|
||||
<div class='name'>
|
||||
<div v-for="auther in item.video_author">
|
||||
<div>{{ auther.author_name}} {{ auther.hospital_name }}</div>
|
||||
<div v-for="auther in item.video_author" style="display: flex;align-items: center;">
|
||||
<div style="flex: 1;" v-if="auther.author_avatar" >
|
||||
<van-image
|
||||
:src="auther.author_avatar"
|
||||
width="40"
|
||||
height="40"
|
||||
fit="cover"
|
||||
round
|
||||
style="margin-right: 8px;"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div style="display: flex;flex-direction: column;flex: 4;">
|
||||
<div>{{ auther.author_name}}</div>
|
||||
<div>{{ auther.hospital_name }}</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -704,7 +733,7 @@ white-space: pre-wrap;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-width: 50px;
|
||||
/* min-width: 50px; */
|
||||
}
|
||||
.toubg1{
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user