|
@@ -191,7 +191,22 @@
|
|
</div>
|
|
</div>
|
|
<div class="create-body" v-if="!isModifyMode">
|
|
<div class="create-body" v-if="!isModifyMode">
|
|
<div class="title h2">报告列表</div>
|
|
<div class="title h2">报告列表</div>
|
|
- <report-list v-bind:reports="reportList" v-bind:taskId="taskId" v-bind:projectId="projectId"/>
|
|
|
|
|
|
+ <el-collapse accordion style="margin: 0 30px">
|
|
|
|
+ <el-collapse-item v-for="(item,index) in acceptedUserList" :key="item.id">
|
|
|
|
+ <template slot="title">
|
|
|
|
+ <el-row style="width: 100%;font-size: 16px">
|
|
|
|
+ <el-col :span="6">{{item.userVO.userName}}</el-col>
|
|
|
|
+ <el-col :span="6">{{item.userVO.email}}</el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-tag type="success" v-if="item.crowdReportVOS">已提交报告</el-tag>
|
|
|
|
+ <el-tag type="info" v-if="!item.crowdReportVOS">未提交报告</el-tag>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </template>
|
|
|
|
+ <report-list v-bind:reports="item.crowdReportVOS" v-bind:taskId="taskId" v-bind:projectId="projectId"/>
|
|
|
|
+ </el-collapse-item>
|
|
|
|
+ </el-collapse>
|
|
|
|
+<!-- <report-list v-bind:reports="reportList" v-bind:taskId="taskId" v-bind:projectId="projectId"/>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|