Compare commits

...

9 Commits
master ... dev

Author SHA1 Message Date
haomingming
f809973769 55 2025-12-12 15:59:37 +08:00
haomingming
ec58f73490 4 2025-12-12 15:53:55 +08:00
haomingming
7a0bd692f4 22 2025-12-12 15:50:01 +08:00
haomingming
b95a1ad396 23 2025-12-12 15:42:16 +08:00
haomingming
db99bc4065 12 2025-12-12 15:41:25 +08:00
haomingming
79877464fb 变形 2025-12-12 15:38:08 +08:00
haomingming
10f4dfae6a 处理变形 2025-12-12 15:30:01 +08:00
haomingming
a304ccf181 处理变形 2025-12-12 15:27:53 +08:00
haomingming
7965e681a5 添加作者头像 2025-12-12 15:22:40 +08:00

View File

@ -78,8 +78,23 @@ v-show="voting">
<div class="title">{{ item.article_title }}</div> <div class="title">{{ item.article_title }}</div>
<div> <div>
<div class='name'> <div class='name'>
<div v-for="auther in item.article_author"> <div v-for="auther in item.article_author" style="display: flex;align-items: center;">
<div>{{ auther.author_name}}&nbsp;{{ auther.hospital_name }}</div> <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>
</div> </div>
@ -142,8 +157,22 @@ v-show="voting">
<div class="title">{{ item.video_title }}</div> <div class="title">{{ item.video_title }}</div>
<div> <div>
<div class='name'> <div class='name'>
<div v-for="auther in item.video_author"> <div v-for="auther in item.video_author" style="display: flex;align-items: center;">
<div>{{ auther.author_name}}&nbsp;{{ auther.hospital_name }}</div> <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>
</div> </div>
@ -704,7 +733,7 @@ white-space: pre-wrap;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
min-width: 50px; /* min-width: 50px; */
} }
.toubg1{ .toubg1{