|
@@ -358,7 +358,7 @@
|
|
|
</div>
|
|
|
<div class="jxpjmddj_box">
|
|
|
<div class="jb_title2">诊断结果:</div>
|
|
|
- <div class="jb_text" v-html="rd?.diagAnalysis?.diagResult"></div>
|
|
|
+ <div class="jb_text" v-html="rd?.diagAnalysis?.diagResult.replace('/\n'/g,'<br>')"></div>
|
|
|
</div>
|
|
|
<div class="jxpjmddj_box">
|
|
|
<div class="jb_title2">建议:</div>
|
|
@@ -581,23 +581,10 @@
|
|
|
<div class="team_p">{{ reportData?.nextSteps?.teamInfo?.team }}</div>
|
|
|
<div class="team_title">团队故事:</div>
|
|
|
<div class="team_p" style="min-height: 180px;">{{ reportData?.nextSteps?.teamInfo?.teamStory }}</div>
|
|
|
- <div class="team_title">团队成员:</div>
|
|
|
- <div class="team_table">
|
|
|
- <table>
|
|
|
- <tr class="th">
|
|
|
- <td>姓名</td>
|
|
|
- <td>类型</td>
|
|
|
- <td>人物简介</td>
|
|
|
- <td>人物故事</td>
|
|
|
- </tr>
|
|
|
- <tr v-for="(item,index) in reportData?.nextSteps?.teamInfo?.team_info.slice(0,1)" :key="index">
|
|
|
- <td class="mw">{{ item.name }}</td>
|
|
|
- <td class="mw">{{ UserCategory.find(u=>u.value==item.type)?.label }}</td>
|
|
|
- <td>{{item.brief}}</td>
|
|
|
- <td>{{item.story}}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
+ <div class="team_title">团队诊断总结:</div>
|
|
|
+ <div class="team_p" style="min-height: 80px;">{{ '' }}</div>
|
|
|
+ <div class="team_title">团队教练:</div>
|
|
|
+ <div class="team_p">{{ '' }}</div>
|
|
|
</div>
|
|
|
<div class="cd_page">{{(((reportData?.dimensionAnalysis?.length)*7)||0)+5}}/{{ reportData?.dimensionAnalysis?.length*7+8 }}</div>
|
|
|
</div>
|
|
@@ -607,6 +594,7 @@
|
|
|
<div class="cb_db_l cdl">{{ datetime }}</div>
|
|
|
</div>
|
|
|
<div class="cb_content">
|
|
|
+ <div class="bp">团队成员</div>
|
|
|
<div class="team_table">
|
|
|
<table>
|
|
|
<tr class="th">
|
|
@@ -615,11 +603,11 @@
|
|
|
<td>人物简介</td>
|
|
|
<td>人物故事</td>
|
|
|
</tr>
|
|
|
- <tr v-for="(item,index) in reportData?.nextSteps?.teamInfo?.team_info.slice(1,5)" :key="index">
|
|
|
+ <tr v-for="(item,index) in reportData?.nextSteps?.teamInfo?.team_info.slice(0,4)" :key="index">
|
|
|
<td class="mw">{{ item.name }}</td>
|
|
|
<td class="mw">{{ UserCategory.find(u=>u.value==item.type)?.label }}</td>
|
|
|
- <td>{{item.brief}}</td>
|
|
|
- <td>{{item.story}}</td>
|
|
|
+ <td class="tc">{{item.brief}}</td>
|
|
|
+ <td class="tc">{{item.story}}</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|