【功能修复】商城:发送商品显示不全问题和打包后客服聊天表情缺失问题
parent
d12c4dc258
commit
ef56489d46
|
@ -423,9 +423,9 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
|
|
||||||
// 消息气泡
|
// 消息气泡
|
||||||
.kefu-message {
|
.kefu-message {
|
||||||
color: #A9A9A9;
|
color: #a9a9a9;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: 3px 3px 5px rgba(220,220,220, 0.1);
|
box-shadow: 3px 3px 5px rgba(220, 220, 220, 0.1);
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
width: auto;
|
width: auto;
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
|
|
|
@ -66,7 +66,7 @@ export const useEmoji = () => {
|
||||||
)
|
)
|
||||||
for (const path in pathList) {
|
for (const path in pathList) {
|
||||||
const imageModule: any = await pathList[path]()
|
const imageModule: any = await pathList[path]()
|
||||||
emojiPathList.value.push({path: path, src: imageModule.default})
|
emojiPathList.value.push({ path: path, src: imageModule.default })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,8 +116,10 @@ export const useEmoji = () => {
|
||||||
function getEmojiFileByName(name: string) {
|
function getEmojiFileByName(name: string) {
|
||||||
for (const emoji of emojiList) {
|
for (const emoji of emojiList) {
|
||||||
if (emoji.name === name) {
|
if (emoji.name === name) {
|
||||||
const emojiPath = emojiPathList.value.find((item: {path:string,src:string}) => item.path.indexOf(emoji.file) > -1)
|
const emojiPath = emojiPathList.value.find(
|
||||||
return emojiPath?emojiPath.src:undefined
|
(item: { path: string; src: string }) => item.path.indexOf(emoji.file) > -1
|
||||||
|
)
|
||||||
|
return emojiPath ? emojiPath.src : undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Reference in New Issue