@aochuang/client-sdk 1.0.288 → 1.0.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,11 +26,12 @@
|
|
|
26
26
|
@blur="handleInputBlur"
|
|
27
27
|
></div>
|
|
28
28
|
</div>
|
|
29
|
-
<template v-if="$slots.addon">
|
|
30
|
-
<slot name="addon"></slot>
|
|
31
|
-
</template>
|
|
32
29
|
<div class="sdk-chat-editor__toolbar is-bottom">
|
|
33
|
-
<div class="sdk-chat-editor__toolbar-left"
|
|
30
|
+
<div class="sdk-chat-editor__toolbar-left">
|
|
31
|
+
<template v-if="$slots.addon">
|
|
32
|
+
<slot name="addon"></slot>
|
|
33
|
+
</template>
|
|
34
|
+
</div>
|
|
34
35
|
<div class="sdk-chat-editor__toolbar-right">
|
|
35
36
|
<div class="sdk-chat-editor__toolbar-item">
|
|
36
37
|
<span class="sdk-chat-editor__tips">按Ctrl+Enter换行</span>
|
|
@@ -932,6 +933,9 @@ export default {
|
|
|
932
933
|
align-items: center;
|
|
933
934
|
justify-content: space-between;
|
|
934
935
|
}
|
|
936
|
+
.sdk-chat-editor__toolbar.is-bottom {
|
|
937
|
+
align-items: flex-end;
|
|
938
|
+
}
|
|
935
939
|
.sdk-chat-editor__toolbar-right{
|
|
936
940
|
display: flex;
|
|
937
941
|
flex-direction: row;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
</div>
|
|
8
8
|
<div class="sdk-chat-panel-box__main">
|
|
9
|
-
<div class="sdk-chat-panel-box__head">
|
|
9
|
+
<div class="sdk-chat-panel-box__head" v-if="showUserName">
|
|
10
10
|
<template v-if="showUserName">
|
|
11
11
|
<span class="sdk-chat-panel-box__name">
|
|
12
12
|
{{ userData ? userData.name : '' }}
|
|
@@ -254,4 +254,12 @@ export default {
|
|
|
254
254
|
padding: 8px 12px;
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
|
+
.sdk-wechat-control-quote-message.sdk-wechat-control-quote-message--quote{
|
|
258
|
+
.sdk-wechat-control-quote-message__content{
|
|
259
|
+
display: -webkit-box;
|
|
260
|
+
-webkit-box-orient: vertical;
|
|
261
|
+
-webkit-line-clamp: 2;
|
|
262
|
+
overflow: hidden;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
257
265
|
</style>
|