From 6d82e941e1aeaf74d3e55102c6e377bffb23e4f1 Mon Sep 17 00:00:00 2001 From: wanganmao <525987762@qq.com> Date: Fri, 21 Oct 2022 10:32:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=94=A8=E6=88=B7=E8=A1=8C=E4=B8=BA?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=9C=89=E9=97=AE=E9=A2=98=20=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=B3=A8=E9=87=8A=E6=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../questions/components/AnswerViewer.vue | 22 +++++++++---------- .../components/AnswerViewerMatrix.vue | 22 +++++++++---------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/views/Answer/questions/components/AnswerViewer.vue b/src/views/Answer/questions/components/AnswerViewer.vue index 4fd2e0d8..12c1dc06 100644 --- a/src/views/Answer/questions/components/AnswerViewer.vue +++ b/src/views/Answer/questions/components/AnswerViewer.vue @@ -198,17 +198,17 @@ export default defineComponent({ if(!data[0]) return; - BrowsingRecordApi.browsingRecordSurveys({ - sn: this.answerSurveySn, - data: { - sn: this.answerSn, - question_index: this.question.question_index, - question_type: this.question.question_type, - planet_id: data[0].wareId, - shelve_planet_id: this.shelfId, - action_info: data, - }, - }).catch((e) => console.error(e)); + // BrowsingRecordApi.browsingRecordSurveys({ + // sn: this.answerSurveySn, + // data: { + // sn: this.answerSn, + // question_index: this.question.question_index, + // question_type: this.question.question_type, + // planet_id: data[0].wareId, + // shelve_planet_id: this.shelfId, + // action_info: data, + // }, + // }).catch((e) => console.error(e)); }, }, }); diff --git a/src/views/Answer/questions/components/AnswerViewerMatrix.vue b/src/views/Answer/questions/components/AnswerViewerMatrix.vue index 62b41ac8..a2715dc6 100644 --- a/src/views/Answer/questions/components/AnswerViewerMatrix.vue +++ b/src/views/Answer/questions/components/AnswerViewerMatrix.vue @@ -157,17 +157,17 @@ export default defineComponent({ if(!data[0]) return; - BrowsingRecordApi.browsingRecordSurveys({ - sn: this.answerSurveySn, - data: { - sn: this.answerSn, - question_index: this.question.question_index, - question_type: this.question.question_type, - planet_id: data[0].wareId, - shelve_planet_id: this.shelfId, - action_info: data, - }, - }).catch((e) => console.error(e)); + // BrowsingRecordApi.browsingRecordSurveys({ + // sn: this.answerSurveySn, + // data: { + // sn: this.answerSn, + // question_index: this.question.question_index, + // question_type: this.question.question_type, + // planet_id: data[0].wareId, + // shelve_planet_id: this.shelfId, + // action_info: data, + // }, + // }).catch((e) => console.error(e)); }, } });