调整服务列表

This commit is contained in:
zhonghua.li
2026-04-19 21:00:05 +08:00
parent 24e8418cbf
commit b4d9a61b47
2 changed files with 59 additions and 44 deletions

View File

@@ -76,9 +76,6 @@
class="service-action-menu"
v-if="selectedServiceItem && selectedServiceItem.id === item.id && showServiceActionMenu"
@click.stop>
<view class="service-action-menu-item service-action-menu-item--danger" @click="handleDelete(item)">
<text>删除</text>
</view>
<view class="service-action-menu-divider"></view>
<view class="service-action-menu-item" @click="handleView(item)">
<text>查看</text>
@@ -88,6 +85,10 @@
<text>AI分析</text>
</view>
<view class="service-action-menu-divider"></view>
<view class="service-action-menu-item" @click="handleAnalysisDetail(item)">
<text>AI精提</text>
</view>
<view class="service-action-menu-divider"></view>
<view class="service-action-menu-item" @click="handleAudio(item)">
<text>录音</text>
</view>
@@ -210,12 +211,10 @@
item: item
});
},
// 处理AI分析
async handleAnalysis(item) {
// 处理AI分析(与 AI精提 共用请求体 AudioManagement仅接口路径与文案不同
async postAudioManagementAi(item, { apiPath, loadingTitle, successFallback, errorLabel }) {
this.closeServiceActionMenu();
try {
// 获取录音记录ID
const recordId = item.id || item.rawData?.id;
if (!recordId) {
uni.showToast({
@@ -224,20 +223,13 @@
});
return;
}
// 获取完整的 AudioManagement 对象,优先使用 rawData如果没有则使用 item 的字段构建
const audioManagement = item.rawData || {
id: recordId
};
uni.showLoading({
title: 'AI分析中...'
title: loadingTitle
});
// 调用AI分析接口/api/audioManagement/AIAnlyzById
const url = getApiUrl('/api/audioManagement/AIAnlyzById');
// 获取认证信息
const url = getApiUrl(apiPath);
let tenantId = '';
let token = '';
try {
@@ -246,8 +238,6 @@
} catch (e) {
console.error('获取认证信息失败:', e);
}
// 构建请求头
const headers = {
'Content-Type': 'application/json'
};
@@ -257,25 +247,20 @@
if (tenantId) {
headers['X-Tenant-Id'] = tenantId;
}
const res = await uni.request({
url: url,
method: 'POST',
data: audioManagement,
header: headers,
timeout: 60000 // AI分析可能需要较长时间设置60秒超时
timeout: 60000
});
uni.hideLoading();
if (res.statusCode === 200 && res.data && res.data.success) {
uni.showToast({
title: res.data.message || 'AI分析请求已提交',
title: res.data.message || successFallback,
icon: 'success',
duration: 2000
});
// 如果返回了更新后的数据,通知父组件更新列表项
if (res.data.data) {
const d = res.data.data;
const updatedItem = {
@@ -286,36 +271,47 @@
audioFileExtension: d.audioFileExtension != null ? d.audioFileExtension : item.audioFileExtension,
recordingText: d.recordingText != null ? d.recordingText : item.recordingText
};
// 通知父组件更新该项
this.$emit('updateItem', {
recordId: recordId,
data: updatedItem
});
// 触发详情查看事件,使用更新后的数据打开详情页
this.$emit('itemClick', updatedItem);
} else {
// 如果没有返回数据,仍然打开详情页
this.$emit('itemClick', item);
}
} else {
uni.showToast({
title: res.data?.message || 'AI分析失败',
title: res.data?.message || `${errorLabel}失败`,
icon: 'none',
duration: 2000
});
}
} catch (error) {
uni.hideLoading();
console.error('AI分析失败:', error);
console.error(`${errorLabel}失败:`, error);
uni.showToast({
title: `AI分析失败: ${error.errMsg || error.message || '未知错误'}`,
title: `${errorLabel}失败: ${error.errMsg || error.message || '未知错误'}`,
icon: 'none',
duration: 2000
});
}
},
handleAnalysis(item) {
return this.postAudioManagementAi(item, {
apiPath: '/api/audioManagement/AIAnlyzById',
loadingTitle: 'AI分析中...',
successFallback: 'AI分析请求已提交',
errorLabel: 'AI分析'
});
},
handleAnalysisDetail(item) {
return this.postAudioManagementAi(item, {
apiPath: '/api/audioManagement/AIAnlyzByIdForDetail',
loadingTitle: 'AI精提中...',
successFallback: 'AI精提请求已提交',
errorLabel: 'AI精提'
});
},
// 处理录音
handleAudio(item) {
this.closeServiceActionMenu();