重新打包
This commit is contained in:
@@ -131,8 +131,8 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment-text" v-if="item['content']" @click="!item['childState'] ? openAnswerCommentsChild(index) : closeAnswerCommentsChild()">{{ item["content"] }}</div>
|
||||
<div class="comments-img-box flexacenter" v-if="item.attachments.images?.length != 0" style="overflow: auto; width: 440px">
|
||||
<img class="comments-img" v-for="(item, index) in item.attachments.images" :key="index" @click="handleAnswerText" :src="item.thumb || item.url" />
|
||||
<div class="comments-img-box flexacenter" v-if="item.attachments?.images?.length != 0" style="overflow: auto; width: 440px">
|
||||
<img class="comments-img" v-for="(item, index) in item?.attachments?.images" :key="index" @click="handleAnswerText" :src="item.thumb || item.url" />
|
||||
</div>
|
||||
<div class="alreadyVoted" v-if="item.voteoption">已投:{{ item.voteoption }}</div>
|
||||
<div class="input-box" v-if="item['childState']">
|
||||
@@ -217,8 +217,8 @@
|
||||
<div class="comments-reply" v-if="ite?.reply?.nickname">@{{ ite?.reply?.nickname }}</div>
|
||||
{{ ite["content"] }}
|
||||
</div>
|
||||
<div class="comments-img-box flexacenter" v-if="ite.attachments.images?.length != 0" style="overflow: auto; width: 410px">
|
||||
<img class="comments-img" v-for="(item, index) in ite.attachments.images" :key="index" @click="handleAnswerText" :src="item.thumb || item.url" />
|
||||
<div class="comments-img-box flexacenter" v-if="ite.attachments?.images?.length != 0" style="overflow: auto; width: 410px">
|
||||
<img class="comments-img" v-for="(item, index) in ite.attachments?.images" :key="index" @click="handleAnswerText" :src="item.thumb || item.url" />
|
||||
</div>
|
||||
<div class="alreadyVoted" v-if="ite.voteoption">已投:{{ ite.voteoption }}</div>
|
||||
<div class="input-box" v-if="ite['childState']">
|
||||
|
||||
Reference in New Issue
Block a user