Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
weixin_45799331
2026-02-11 13:41:38 +08:00
4 changed files with 124 additions and 2 deletions

View File

@@ -1347,11 +1347,11 @@ function handleMedicalAdvice(row) {
// 尝试从 contentJson 中解析数据
const contentData = JSON.parse(item.contentJson)
const adviceType = Number(contentData.adviceType)
return adviceType === 3
return adviceType === 1
} catch (e) {
// 如果解析失败,尝试使用顶层的 adviceType
const adviceType = Number(item.adviceType)
return adviceType === 3
return adviceType === 1
}
})