选择Emoji时增加鼠标状态切换

This commit is contained in:
A1300399510
2024-08-12 10:55:31 +08:00
parent f09afe9600
commit 6cf9cfb0fd
19 changed files with 101 additions and 128 deletions

View File

@@ -1,7 +1,7 @@
<template>
<el-popover placement="bottom" :width="470" trigger="click" v-model:visible="selectEomjiPop">
<template #reference>
<div class="respond-add flexcenter" ref="add">
<div class="respond-add flexcenter" ref="add">
<img class="respond-add-icon" src="@/img/plus-sign.svg" />
</div>
</template>
@@ -9,7 +9,9 @@
<div class="respond-list-title">选择你的回应</div>
<div class="respond-list">
<template v-for="item in riposteoptions" :key="item">
<div class="respond-item" v-for="(item, key) in item.data" :key="key" v-html="jointriposte(key)" @click="selectEomji(key)"></div>
<div class="respond-item flexcenter" v-for="(item, key) in item.data" :key="key">
<div class="respond-item-key" v-html="jointriposte(key)" @click="selectEomji(key)"></div>
</div>
</template>
</div>
</div>