|
@@ -102,11 +102,6 @@
|
|
|
{{ scope.row.devFixTimePurgeNH/(1000 * 3600) | numFilter }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column v-if="title === '模块分布数据' || title === '去除节假日的修复时长数据' || type === '缺陷状态' || type === '优先级' || title === '缺陷统计数据' " 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 }}
|
|
@@ -115,6 +110,11 @@
|
|
|
<el-table-column v-if="type === '端类型' || type === '发现方式' || type === '发现阶段' || type === '缺陷类型'" :label="type" min-width="100" align="center">
|
|
|
{{ oftype }}
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="bugStatusName" label="状态" min-width="100" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.bugStatusName }}
|
|
|
+ </template>
|
|
|
+ </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' }">
|