|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
<div style="margin: 0 30px;">
|
|
|
+ {{ type }}
|
|
|
<el-table v-if="title === '状态停留分布图数据' || title === '需求分布图数据' || title === '任务分布图数据'" :data="data" style="width: 100%;" :height="title === '状态停留分布图数据' ? 'calc(100vh - 363px)': 'calc(100vh - 318px)'" :header-cell-style="{ 'color':'rgba(74,74,74,1)','font-size':'14px','font-weight':'500' }">
|
|
|
<el-table-column label="优先级" min-width="80" align="left">
|
|
|
<template slot-scope="scope" style="text-align: center;">
|
|
@@ -33,7 +34,6 @@
|
|
|
<el-table-column v-if="type === '直接归属'" label="直接归属" min-width="110" align="center" show-overflow-tooltip>
|
|
|
{{ oftype }}
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column v-if="type === '需求'" prop="typeName" label="需求类型" min-width="110" align="center" /> -->
|
|
|
<el-table-column v-if="type === 'pm'" label="PM" min-width="100" show-overflow-tooltip align="center">
|
|
|
<template v-if="scope.row.pmMemberInfoResponse" slot-scope="scope">
|
|
|
<span>{{ scope.row.pmMemberInfoResponse.name }}</span>
|
|
@@ -99,7 +99,19 @@
|
|
|
{{ scope.row.devFixTimePurgeNH/(1000 * 3600) | numFilter }}H
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="bugStatusName" label="状态" min-width="100" align="center" />
|
|
|
+ <el-table-column v-if="type === '缺陷状态' || type === '优先级' " prop="bugStatusName" label="状态" min-width="100" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.bugStatusName }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column v-if="type === '缺陷等级'" prop="bugStatusName" label="缺陷等级" min-width="100" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.priorityName }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column v-if="type === '端类型' || type === '发现方式' || type === '发现阶段' || type === '缺陷类型'" :label="type" min-width="100" align="center">
|
|
|
+ {{ oftype }}
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<el-table v-if="title === '报告统计数据'" :data="data" style="width: auto;" height="calc(100vh - 296px)" :header-cell-style="{ 'color':'rgba(74,74,74,1)','font-size':'14px','font-weight':'500' }">
|