no message

This commit is contained in:
kuaifan 2022-05-23 15:40:09 +08:00
parent 46555fcfa5
commit bd3b9315b2
2 changed files with 12 additions and 3 deletions

View File

@ -126,13 +126,14 @@ class UmengAlias extends AbstractModel
],
], $extra),
'type' => 'customizedcast',
'mipush' => true,
'mi_activity' => 'app.eeui.umeng.activity.MfrMessageActivity',
'alias_type' => 'userid',
'alias' => $alias,
'policy' => [
'expire_time' => Carbon::now()->addSeconds($seconds)->toDateTimeString(),
],
'channel_properties' => [
'channel_activity' => 'app.eeui.umeng.activity.MfrMessageActivity',
],
]);
default:

View File

@ -28,7 +28,7 @@
placement="top"
popperClass="chat-input-more-popover">
<ETooltip slot="reference" ref="moreTip" :disabled="!$isDesktop || showMore" placement="top" :content="$L('展开')">
<i class="taskfont">&#xe790;</i>
<i class="taskfont" @click="onToolbar('more')">&#xe790;</i>
</ETooltip>
<div class="chat-input-popover-item" @click="onToolbar('image')">
<i class="taskfont">&#xe64a;</i>
@ -314,6 +314,8 @@ export default {
this.$emit('on-blur', this.quill)
} else {
this.$emit('on-focus', this.quill)
this.showEmoji = false
this.showMore = false
if (this.isSpecVersion) {
// ios11.0-11.3 scrollTopscrolIntoViewbug
//
@ -407,6 +409,12 @@ export default {
},
onToolbar(action) {
if (action !== 'emoji') {
this.showEmoji = false;
}
if (action !== 'more') {
this.showMore = false;
}
switch (action) {
case 'user':
this.openMenu("@");