parent
073e8bfc63
commit
7fa5b1d62e
@ -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,
|
||||
|
@ -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) {
|
||||
|
@ -56,7 +56,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<chat-content :id="id" :group-name="groupName" :message-list="activeMessageList" />
|
||||
<chat-content :id="id" :message-list="activeMessageList" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="tabActive==1">文档</div>
|
||||
@ -128,22 +128,11 @@ export default {
|
||||
list = find.messageList;
|
||||
}
|
||||
return list;
|
||||
},
|
||||
groupName() {
|
||||
let name = '';
|
||||
const find = this.groupList.find(item => {
|
||||
return item.id == this.id;
|
||||
});
|
||||
if (find) {
|
||||
name = this.getGroupName(find);
|
||||
}
|
||||
return name;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'$store.state.socket.simulationReset': function (val) { // 仿真重置
|
||||
if (val) {
|
||||
this.id = 0;
|
||||
this.$store.dispatch('socket/resetConversationGroup');
|
||||
}
|
||||
},
|
||||
@ -315,18 +304,10 @@ export default {
|
||||
<style lang='scss'>
|
||||
.chatDialog{
|
||||
pointer-events: none !important;
|
||||
.el-dialog {
|
||||
border-radius: 5px;
|
||||
.el-dialog__header,
|
||||
.el-dialog__body {
|
||||
padding: 2px;
|
||||
pointer-events: all !important;
|
||||
}
|
||||
.el-dialog__header {
|
||||
background: #0076F6;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
.el-dialog__header,
|
||||
.el-dialog__body {
|
||||
padding: 0px;
|
||||
pointer-events: all !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -345,6 +326,7 @@ export default {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
background: #0076F6;
|
||||
.icon {
|
||||
color: #fff;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user