feat-实现AI洞察功能

This commit is contained in:
zhang.weiwei
2025-03-23 06:58:52 +08:00
parent 823287b054
commit 900aefc926
29 changed files with 493 additions and 40 deletions

View File

@@ -207,4 +207,28 @@ export function cancelAiMark(sn, data) {
data
});
}
/** add by zhangweiwei 20250331_ai AI 样本标记 end */
/** add by zhangweiwei 20250331_ai AI 样本标记 end */
/** add by zhangweiwei 20250331_ai AI 洞察 start */
/**
* 数据分析AI 洞察
* @param {String} sn 问卷编号
* @param {Object} data
*/
export function aiInsight(sn, data) {
return request({
url: `/console/surveys/${sn}/analysis_insights`,
method: 'post',
toastError: false,
data
});
}
export function queryAiStatus(sn, data) {
return request({
url: `/console/surveys/${sn}/status`,
method: 'post',
data
});
}
/** add by zhangweiwei 20250331_ai AI 洞察 end */