分类消息新增查看完整对话

This commit is contained in:
kuaifan 2022-07-17 14:48:30 +08:00
parent 95c11f0504
commit 73ecfc50aa

View File

@ -209,6 +209,10 @@
<i class="taskfont">&#xe7b7;</i>
<span>{{ $L(operateItem.todo ? '取消待办' : '设待办') }}</span>
</li>
<li v-if="msgType !== ''" @click="onOperate('pos')">
<i class="taskfont">&#xee15;</i>
<span>{{ $L('完整对话') }}</span>
</li>
</ul>
</DropdownItem>
<DropdownItem name="emoji" class="dropdown-emoji">
@ -1055,7 +1059,7 @@ export default {
return
}
//
if (this.loadMsg || this.msgType != '') {
if (this.loadMsg || this.msgType !== '') {
this.msgType = ''
if (loop_num === 0) {
this.$store.dispatch("showSpinner", 600)
@ -1651,6 +1655,10 @@ export default {
this.onTodo()
break;
case "pos":
this.onPositionId(this.operateItem.id)
break;
case "emoji":
this.onEmoji(value)
break;