【功能完善】商城: 客服文本消息样式调整,内容居中
parent
64e2ddfa18
commit
5cdc15387c
|
@ -200,7 +200,7 @@ onBeforeUnmount(() => {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.kefu {
|
.kefu {
|
||||||
background-color: #fff;
|
background-color: #e5e4e4;
|
||||||
|
|
||||||
&-conversation {
|
&-conversation {
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
|
@ -46,14 +46,13 @@
|
||||||
:class="{
|
:class="{
|
||||||
'kefu-message': KeFuMessageContentTypeEnum.TEXT === item.contentType
|
'kefu-message': KeFuMessageContentTypeEnum.TEXT === item.contentType
|
||||||
}"
|
}"
|
||||||
class="p-10px"
|
|
||||||
>
|
>
|
||||||
<!-- 文本消息 -->
|
<!-- 文本消息 -->
|
||||||
<MessageItem :message="item">
|
<MessageItem :message="item">
|
||||||
<template v-if="KeFuMessageContentTypeEnum.TEXT === item.contentType">
|
<template v-if="KeFuMessageContentTypeEnum.TEXT === item.contentType">
|
||||||
<div
|
<div
|
||||||
v-dompurify-html="replaceEmoji(getMessageContent(item).text || item.content)"
|
v-dompurify-html="replaceEmoji(getMessageContent(item).text || item.content)"
|
||||||
class="flex items-center"
|
class="flex items-center h-1/1"
|
||||||
></div>
|
></div>
|
||||||
</template>
|
</template>
|
||||||
</MessageItem>
|
</MessageItem>
|
||||||
|
@ -64,7 +63,7 @@
|
||||||
:initial-index="0"
|
:initial-index="0"
|
||||||
:preview-src-list="[getMessageContent(item).picUrl || item.content]"
|
:preview-src-list="[getMessageContent(item).picUrl || item.content]"
|
||||||
:src="getMessageContent(item).picUrl || item.content"
|
:src="getMessageContent(item).picUrl || item.content"
|
||||||
class="w-200px"
|
class="w-200px mx-10px"
|
||||||
fit="contain"
|
fit="contain"
|
||||||
preview-teleported
|
preview-teleported
|
||||||
/>
|
/>
|
||||||
|
@ -79,7 +78,7 @@
|
||||||
:spuId="getMessageContent(item).spuId"
|
:spuId="getMessageContent(item).spuId"
|
||||||
:stock="getMessageContent(item).stock"
|
:stock="getMessageContent(item).stock"
|
||||||
:title="getMessageContent(item).spuName"
|
:title="getMessageContent(item).spuName"
|
||||||
class="max-w-300px"
|
class="max-w-300px mx-10px"
|
||||||
/>
|
/>
|
||||||
</MessageItem>
|
</MessageItem>
|
||||||
<!-- 订单消息 -->
|
<!-- 订单消息 -->
|
||||||
|
@ -87,7 +86,7 @@
|
||||||
<OrderItem
|
<OrderItem
|
||||||
v-if="KeFuMessageContentTypeEnum.ORDER === item.contentType"
|
v-if="KeFuMessageContentTypeEnum.ORDER === item.contentType"
|
||||||
:message="item"
|
:message="item"
|
||||||
class="max-w-100%"
|
class="max-w-100% mx-10px"
|
||||||
/>
|
/>
|
||||||
</MessageItem>
|
</MessageItem>
|
||||||
</div>
|
</div>
|
||||||
|
@ -373,7 +372,7 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.kefu {
|
.kefu {
|
||||||
background-color: #fff;
|
background-color: #f5f5f5;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: calc(100% - 300px - 260px);
|
width: calc(100% - 300px - 260px);
|
||||||
|
|
||||||
|
@ -389,12 +388,23 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.kefu-header {
|
.kefu-header {
|
||||||
background: #fbfbfb;
|
background-color: #f5f5f5;
|
||||||
box-shadow: 0 0 0 0 #dcdfe6;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 1px; /* 初始宽度 */
|
||||||
|
background-color: var(--el-border-color);
|
||||||
|
transform: scaleY(0.3); /* 缩小视觉高度 */
|
||||||
|
}
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -423,7 +433,7 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
|
||||||
.kefu-message {
|
.kefu-message {
|
||||||
background-color: rgb(245, 245, 245);
|
background-color: #fff;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
border-top-right-radius: 10px;
|
border-top-right-radius: 10px;
|
||||||
|
@ -452,9 +462,9 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
width: auto;
|
width: auto;
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
text-align: left;
|
//text-align: left;
|
||||||
display: inline-block !important;
|
//display: inline-block !important;
|
||||||
word-break: break-all;
|
//word-break: break-all;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -468,7 +478,7 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
color: #999;
|
color: #fff;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -500,6 +510,7 @@ const showTime = computed(() => (item: KeFuMessageRespVO, index: number) => {
|
||||||
|
|
||||||
::v-deep(textarea) {
|
::v-deep(textarea) {
|
||||||
resize: none;
|
resize: none;
|
||||||
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.el-input__wrapper) {
|
:deep(.el-input__wrapper) {
|
||||||
|
|
|
@ -167,7 +167,7 @@ const getUserData = async () => {
|
||||||
.kefu {
|
.kefu {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 300px !important;
|
width: 300px !important;
|
||||||
background-color: #fff;
|
background-color: #f5f5f5;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
content: '';
|
||||||
|
@ -181,12 +181,23 @@ const getUserData = async () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
&-header {
|
&-header {
|
||||||
background: #fbfbfb;
|
background-color: #f5f5f5;
|
||||||
box-shadow: 0 0 0 0 #dcdfe6;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 1px; /* 初始宽度 */
|
||||||
|
background-color: var(--el-border-color);
|
||||||
|
transform: scaleY(0.3); /* 缩小视觉高度 */
|
||||||
|
}
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
|
@ -93,7 +93,7 @@ export const useEmoji = () => {
|
||||||
const emojiFile = getEmojiFileByName(item)
|
const emojiFile = getEmojiFileByName(item)
|
||||||
newData = newData.replace(
|
newData = newData.replace(
|
||||||
item,
|
item,
|
||||||
`<img class="chat-img" style="width: 24px;height: 24px;margin: 0 3px;" src="${emojiFile}" alt=""/>`
|
`<img class="chat-img" style="width: 24px;height: 24px;margin: 0 3px;vertical-align: middle;" src="${emojiFile}" alt=""/>`
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue