mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-02 06:54:19 +00:00
no message
This commit is contained in:
parent
46555fcfa5
commit
bd3b9315b2
@ -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:
|
||||
|
||||
@ -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"></i>
|
||||
<i class="taskfont" @click="onToolbar('more')"></i>
|
||||
</ETooltip>
|
||||
<div class="chat-input-popover-item" @click="onToolbar('image')">
|
||||
<i class="taskfont"></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 对scrollTop及scrolIntoView解释有bug
|
||||
// 直接执行会导致输入框滚到底部被遮挡
|
||||
@ -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("@");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user