1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
| // pages/AIAide/index.js
| const $$ = require('../../utils/util');
| const app = getApp();
|
| function getawApi(submitData) {
| return $$.request({
| url: 'case-law/get-law',
| type: 'post',
| ai: true,
| submitData,
| service: 'mediate',
| });
| }
| // 获取案例
| function getCaseApi(submitData) {
| return $$.request({
| url: 'case-law/get-case',
| type: 'post',
| ai: true,
| submitData,
| service: 'mediate',
| });
| }
|
| // 提交评价
| function submitEvaluationApi(submitData) {
| return $$.request({
| url: '/api/wechat/caseAdviceEvaluate/save',
| type: 'post',
| submitData,
| service: 'mediate',
| });
| }
|
| Page({
| /**
| * 页面的初始数据
| */
| data: {
| imgUrl: $$.url.img,
| AIData: [], //法条
| caseData: [], //案例
| showEvaluation: false, // 是否显示评价弹窗
| evaluation: {
| similarity: 0,
| helpfulness: 0,
| satisfaction: 0,
| inspiration: 0,
| comments: ''
| }
| },
|
| async getaw(data) {
| let newData = {
| caseDes: data.caseDes,
| caseClaim: data.caseClaim,
| caseId: data.caseId,
| }
| $$.showLoading();
| const res = await getawApi(newData);
| $$.hideLoading();
| if (res.type) {
| let nowData = res.data || []
| this.setData({
| AIData: nowData.map(i => ({
| ...i,
| show: false
| }))
| })
| }
| },
|
| // 案例
| async getCase(data) {
| let newData = {
| caseDes: data.caseDes,
| caseClaim: data.caseClaim,
| caseId: data.caseId,
| }
| $$.showLoading();
| const res = await getCaseApi(newData);
| $$.hideLoading();
| if (res.type) {
| this.setData({
| caseData: res.data || []
| })
| }
| },
|
| // 打开折叠法条
| lawClick(e) {
| let item = e.currentTarget.dataset.item;
| let index = e.currentTarget.dataset.index;
| this.setData({
| AIData: this.data.AIData.map((i, idx) => ({
| ...i,
| show: idx === index ? i.show ? false : true : false,
| }))
| })
| },
|
| // 跳转案例详情
| caseClick(e) {
| let url = e.currentTarget.dataset.url;
| let caseId = e.currentTarget.dataset.caseid;
| let caseType = e.currentTarget.dataset.casetype;
| let caseName = e.currentTarget.dataset.casename;
|
| wx.navigateTo({
| url: url + '?caseId=' + caseId + '&type=' + caseType + '&caseName=' + caseName,
| });
| },
|
| // 显示评价弹窗
| showEvaluationPopup() {
| this.setData({
| showEvaluation: true,
| evaluation: {
| similarity: 0,
| helpfulness: 0,
| satisfaction: 0,
| inspiration: 0,
| comments: ''
| }
| });
| },
|
| // 关闭评价弹窗
| closeEvaluationPopup() {
| this.setData({
| showEvaluation: false
| });
| },
|
| // 设置评分
| setRating(e) {
| const type = e.currentTarget.dataset.type;
| const value = e.currentTarget.dataset.value;
|
| this.setData({
| [`evaluation.${type}`]: value
| });
| },
|
| // 设置评价意见
| setComments(e) {
| this.setData({
| 'evaluation.comments': e.detail.value
| });
| },
|
| // 提交评价
| async submitEvaluation() {
| const { similarity, helpfulness, satisfaction, inspiration } = this.data.evaluation;
|
| // 验证评分是否都已填写
| if (!similarity || !helpfulness || !satisfaction || !inspiration) {
| $$.showToast('请完成所有评分项');
| return;
| }
|
| // 准备提交数据
| const submitData = {
| ...this.data.evaluation,
| caseId: this.caseId || '',
| createBy: app.globalData.userInfo?.id || '',
| createTime: new Date()
| };
|
| $$.showLoading('提交中...');
| try {
| const res = await submitEvaluationApi(submitData);
| $$.hideLoading();
|
| if (res.type) {
| // 先关闭评价弹窗
| $$.showToast('评价提交成功');
| this.closeEvaluationPopup();
|
| } else {
| $$.showToast(res.message || '提交失败,请重试');
| }
| } catch (error) {
| $$.hideLoading();
| $$.showToast('提交失败,请重试');
| console.error('评价提交错误:', error);
| }
| },
|
| /**
| * 生命周期函数--监听页面加载
| */
| onLoad(options) {
| console.log('options', options);
| let {
| caseDes,
| caseClaim,
| caseId,
| } = options;
|
| this.caseId = caseId;
|
| this.getaw({
| caseDes,
| caseClaim,
| caseId,
| })
| this.getCase({
| caseDes,
| caseClaim,
| caseId,
| })
| },
| })
|
|