|
@@ -113,24 +113,36 @@ export default {
|
|
|
},
|
|
|
answerCode(msg) {
|
|
|
var _this = this;
|
|
|
- _this.ajax.post('https://gpt4.cocorobo.cn/assistants_completion_response', {
|
|
|
- uid: _this.id,
|
|
|
- message: msg,
|
|
|
- }).then(function (response) {
|
|
|
- console.log(response);
|
|
|
+ if(!msg){
|
|
|
+ _this.ajax.post('https://gpt4.cocorobo.cn/assistants_completion_response', {
|
|
|
+ uid: _this.id,
|
|
|
+ message: msg,
|
|
|
+ }).then(function (response) {
|
|
|
+ console.log(response);
|
|
|
+ _this.answerArray.push(
|
|
|
+ {
|
|
|
+ isY: false,
|
|
|
+ content: response.data.FunctionResponse,
|
|
|
+ name: _this.answerArray[0].name,
|
|
|
+ img: _this.answerArray[0].img
|
|
|
+ }
|
|
|
+ )
|
|
|
+ _this.isloading = false
|
|
|
+ }).catch(function (error) {
|
|
|
+ _this.isloading = false
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ }else{
|
|
|
_this.answerArray.push(
|
|
|
- {
|
|
|
- isY: false,
|
|
|
- content: response.data.FunctionResponse,
|
|
|
- name: _this.answerArray[0].name,
|
|
|
- img: _this.answerArray[0].img
|
|
|
- }
|
|
|
- )
|
|
|
- _this.isloading = false
|
|
|
- }).catch(function (error) {
|
|
|
- _this.isloading = false
|
|
|
- console.log(error);
|
|
|
- });
|
|
|
+ {
|
|
|
+ isY: false,
|
|
|
+ content: "抱歉,您刚刚没有成功录入内容,请再说一遍!",
|
|
|
+ name: _this.answerArray[0].name,
|
|
|
+ img: _this.answerArray[0].img
|
|
|
+ }
|
|
|
+ )
|
|
|
+ _this.isloading = false
|
|
|
+ }
|
|
|
},
|
|
|
// 开始录音
|
|
|
startRecorder() {
|