| | |
| | | : { |
| | | historyId: item.answer?.history_id, |
| | | role: RoleEnum.assistant, |
| | | content: parseAnswerContent(item.answer), |
| | | content: parseAnswerContent(item?.answer), |
| | | state: item.answer_state, |
| | | sectionAId: mapUser?.section_a_id, |
| | | createTime: answerTime, |
| | | stepList: convertProcessToStep(item?.answer?.exec_process), |
| | | stepList: convertProcessToStep(item?.answer?.reports?.[0]?.exec_process), |
| | | stepIsShow: false, |
| | | isStopMsg: false, |
| | | |
| | |
| | | historyId: msgValue.history_id, |
| | | role: RoleEnum.assistant, |
| | | content: parseAnswerContent(msgValue), |
| | | stepList: convertProcessToStep(msgValue.exec_process), |
| | | stepList: convertProcessToStep(msgValue?.reports?.[0]?.exec_process), |
| | | stepIsShow: false, |
| | | isStopMsg: false, |
| | | |