diff --git a/src/scripts/cmdPlugin/newHandler.js b/src/scripts/cmdPlugin/newHandler.js index b565e00eb..b0cd0779e 100644 --- a/src/scripts/cmdPlugin/newHandler.js +++ b/src/scripts/cmdPlugin/newHandler.js @@ -174,12 +174,6 @@ class Handler { fileBase64Str: 'no' } }; - if (operation.operationType == CMD.Conversation.CMD_Conversation_Group_Text_Chat.value) { // 兼容新会话接口 - step2.description = `选中:${operation.params.groupName},点击录制语音`; - operation2.params.id = operation.params.id; - operation3.operationType = CMD.Conversation.CMD_Conversation_Group_Audio_Base64.value; - operation3.params.id = operation.params.id; - } const step3 = { description: `请说出“${operation.params.content}”后,再次点击发送语音!`, memberId: stepInfo.memberId, diff --git a/src/views/newMap/display/newChat/chatContent.vue b/src/views/newMap/display/newChat/chatContent.vue index 15281e671..5af1a18ac 100644 --- a/src/views/newMap/display/newChat/chatContent.vue +++ b/src/views/newMap/display/newChat/chatContent.vue @@ -54,10 +54,6 @@ export default { id:{ type:Number, required:true - }, - groupName: { - type: String, - required:true } }, data() { @@ -114,9 +110,6 @@ export default { if (newVal !== oldVal && this.isBottom) { this.scrollTop(); } - }, - id() { - this.cancelRecording(); } }, mounted() { @@ -189,7 +182,7 @@ export default { return name; }, sendText() { - if (!this.id || !this.textContent) { return; } + if (!this.id) { return; } const operate = { over: true, cmdType: CMD.Conversation.CMD_Conversation_Group_Text_Chat, @@ -197,8 +190,7 @@ export default { userOperationType: UserOperationType.LEFTCLICK, param: { id: this.id, - groupName: this.groupName, - content: this.textContent + content:this.textContent } }; this.$store.dispatch('trainingNew/next', operate).then(({ valid }) => { @@ -317,10 +309,7 @@ export default { if (!this.recordSending) { const operate = { operation: OperationEvent.Conversation.Chat.record.operation, - userOperationType: UserOperationType.LEFTCLICK, - param: { - id: this.id - } + userOperationType: UserOperationType.LEFTCLICK }; this.$store.dispatch('trainingNew/next', operate).then(({ valid }) => { if (valid) { diff --git a/src/views/newMap/display/newChat/chatDialog.vue b/src/views/newMap/display/newChat/chatDialog.vue index daf6b6329..1f44d8ddf 100644 --- a/src/views/newMap/display/newChat/chatDialog.vue +++ b/src/views/newMap/display/newChat/chatDialog.vue @@ -56,7 +56,7 @@