家具销售场景大模型联调
This commit is contained in:
@@ -91,6 +91,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getApiUrl } from '@/common/config.js';
|
||||
|
||||
export default {
|
||||
name: 'ServiceList',
|
||||
props: {
|
||||
@@ -159,12 +161,107 @@
|
||||
});
|
||||
},
|
||||
// 处理AI分析
|
||||
handleAnalysis(item) {
|
||||
async handleAnalysis(item) {
|
||||
this.closeServiceActionMenu();
|
||||
this.$emit('menuAction', {
|
||||
action: 'analysis',
|
||||
item: item
|
||||
});
|
||||
|
||||
try {
|
||||
// 获取录音记录ID
|
||||
const recordId = item.id || item.rawData?.id;
|
||||
if (!recordId) {
|
||||
uni.showToast({
|
||||
title: '无法获取记录ID',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
// 获取完整的 AudioManagement 对象,优先使用 rawData,如果没有则使用 item 的字段构建
|
||||
const audioManagement = item.rawData || {
|
||||
id: recordId
|
||||
};
|
||||
|
||||
uni.showLoading({
|
||||
title: 'AI分析中...'
|
||||
});
|
||||
|
||||
// 调用AI分析接口:/api/audioManagement/AIAnlyzById
|
||||
const url = getApiUrl('/api/audioManagement/AIAnlyzById');
|
||||
|
||||
// 获取认证信息
|
||||
let tenantId = '';
|
||||
let token = '';
|
||||
try {
|
||||
tenantId = uni.getStorageSync('backend-tenant-id') || '';
|
||||
token = uni.getStorageSync('backend-token') || '';
|
||||
} catch (e) {
|
||||
console.error('获取认证信息失败:', e);
|
||||
}
|
||||
|
||||
// 构建请求头
|
||||
const headers = {
|
||||
'Content-Type': 'application/json'
|
||||
};
|
||||
if (token) {
|
||||
headers['Authorization'] = `Bearer ${token}`;
|
||||
}
|
||||
if (tenantId) {
|
||||
headers['X-Tenant-Id'] = tenantId;
|
||||
}
|
||||
|
||||
const res = await uni.request({
|
||||
url: url,
|
||||
method: 'POST',
|
||||
data: audioManagement,
|
||||
header: headers,
|
||||
timeout: 60000 // AI分析可能需要较长时间,设置60秒超时
|
||||
});
|
||||
|
||||
uni.hideLoading();
|
||||
|
||||
if (res.statusCode === 200 && res.data && res.data.success) {
|
||||
uni.showToast({
|
||||
title: res.data.message || 'AI分析请求已提交',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
});
|
||||
|
||||
// 如果返回了更新后的数据,通知父组件更新列表项
|
||||
if (res.data.data) {
|
||||
// 构建更新后的item数据
|
||||
const updatedItem = {
|
||||
...item,
|
||||
rawData: res.data.data,
|
||||
description: res.data.data.summary || item.description
|
||||
};
|
||||
|
||||
// 通知父组件更新该项
|
||||
this.$emit('updateItem', {
|
||||
recordId: recordId,
|
||||
data: updatedItem
|
||||
});
|
||||
|
||||
// 触发详情查看事件,使用更新后的数据打开详情页
|
||||
this.$emit('itemClick', updatedItem);
|
||||
} else {
|
||||
// 如果没有返回数据,仍然打开详情页
|
||||
this.$emit('itemClick', item);
|
||||
}
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.data?.message || 'AI分析失败',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
uni.hideLoading();
|
||||
console.error('AI分析失败:', error);
|
||||
uni.showToast({
|
||||
title: `AI分析失败: ${error.errMsg || error.message || '未知错误'}`,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
},
|
||||
// 处理录音
|
||||
handleAudio(item) {
|
||||
|
||||
Reference in New Issue
Block a user