|
@@ -229,7 +229,7 @@
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@click.stop="addReply(item)"
|
|
@click.stop="addReply(item)"
|
|
- class="text-base text-black-3"
|
|
|
|
|
|
+ class="break-all whitespace-normal text-base text-black-3"
|
|
v-html="coveredContent(item?.commentContent)"
|
|
v-html="coveredContent(item?.commentContent)"
|
|
></div>
|
|
></div>
|
|
</div>
|
|
</div>
|
|
@@ -301,7 +301,7 @@
|
|
</span>
|
|
</span>
|
|
<span
|
|
<span
|
|
@click.stop="addReply(subItem, item.id)"
|
|
@click.stop="addReply(subItem, item.id)"
|
|
- class="text-base text-black-3"
|
|
|
|
|
|
+ class="break-all whitespace-normal text-base text-black-3"
|
|
v-html="coveredContent(subItem?.commentContent)"
|
|
v-html="coveredContent(subItem?.commentContent)"
|
|
></span>
|
|
></span>
|
|
</div>
|
|
</div>
|
|
@@ -444,8 +444,20 @@
|
|
@focus="textareaFocus"
|
|
@focus="textareaFocus"
|
|
/>
|
|
/>
|
|
<div class="w-full flex justify-between items-center mb-5">
|
|
<div class="w-full flex justify-between items-center mb-5">
|
|
- <img @click="openEmoji" src="~/assets/img/yj/emoji.png" class="w-28 h-28" alt="" />
|
|
|
|
-
|
|
|
|
|
|
+ <img
|
|
|
|
+ v-if="showEmoji"
|
|
|
|
+ @click="openEmoji"
|
|
|
|
+ src="~/assets/img/yj/Keyboard.svg"
|
|
|
|
+ class="w-28 h-28"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
|
|
+ <img
|
|
|
|
+ v-else
|
|
|
|
+ @click="openEmoji"
|
|
|
|
+ src="~/assets/img/yj/emoji.png"
|
|
|
|
+ class="w-28 h-28"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
<div
|
|
<div
|
|
@click="addComment"
|
|
@click="addComment"
|
|
:class="`pt-6 pb-6 pl-20 pr-20 mr-5 ${commentValue ? 'bg-[#FD9A00]' : 'bg-[#999999]'} bg-[#FD9A00] text-[#fff] flex items-center justify-center rounded-full shrink-0`"
|
|
:class="`pt-6 pb-6 pl-20 pr-20 mr-5 ${commentValue ? 'bg-[#FD9A00]' : 'bg-[#999999]'} bg-[#FD9A00] text-[#fff] flex items-center justify-center rounded-full shrink-0`"
|
|
@@ -1076,7 +1088,6 @@ onMounted(() => {
|
|
flex: 1;
|
|
flex: 1;
|
|
background: #f5f5f5;
|
|
background: #f5f5f5;
|
|
border: 1px solid #dcdcdc;
|
|
border: 1px solid #dcdcdc;
|
|
- // padding: 5px px;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
.emoji-box {
|
|
.emoji-box {
|