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

This commit is contained in:
A1300399510
2024-08-12 11:03:32 +08:00
parent 0c0c44e459
commit ab1f8c5427
40 changed files with 209 additions and 200 deletions

View File

@@ -10,7 +10,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>
@@ -101,7 +103,10 @@ const selectEomji = key => {
font-family: "emojifont";
text-align: center;
margin-bottom: 20px;
cursor: pointer;
// cursor: pointer;
.respond-item-key {
cursor: pointer;
}
}
}
}