|
@@ -1347,7 +1347,7 @@ const hatConfig = [
|
|
|
const sixHatList = computed(() => {
|
|
const sixHatList = computed(() => {
|
|
|
if (!lookWorkData.value?.content) return []
|
|
if (!lookWorkData.value?.content) return []
|
|
|
const hats = lookWorkData.value.content.hats || []
|
|
const hats = lookWorkData.value.content.hats || []
|
|
|
- const c = lookWorkData.value.content.c || {}
|
|
|
|
|
|
|
+ const c = lookWorkData.value.content.hatContent || {}
|
|
|
return hatConfig
|
|
return hatConfig
|
|
|
.filter(h => hats.includes(h.key))
|
|
.filter(h => hats.includes(h.key))
|
|
|
.map(h => ({ ...h, content: c[h.key] || '' }))
|
|
.map(h => ({ ...h, content: c[h.key] || '' }))
|
|
@@ -2929,7 +2929,7 @@ const aiAnalysisRefresh832 = () => {
|
|
|
chatMsg += `\n${submitter} - 讨论场景:\n${c.scenario}\n`
|
|
chatMsg += `\n${submitter} - 讨论场景:\n${c.scenario}\n`
|
|
|
}
|
|
}
|
|
|
const hats = c.hats || []
|
|
const hats = c.hats || []
|
|
|
- const hatContent = c.c || c.hatContent || {}
|
|
|
|
|
|
|
+ const hatContent = c.hatContent || {}
|
|
|
hats.forEach((hat: string) => {
|
|
hats.forEach((hat: string) => {
|
|
|
const label = hatNames[hat] || hat
|
|
const label = hatNames[hat] || hat
|
|
|
const content = hatContent[hat] || ''
|
|
const content = hatContent[hat] || ''
|