|
@@ -151,17 +151,11 @@
|
|
|
<span class="stylus-hover" @click="link_task(scope.row.id)">{{ scope.row.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="所属项目" min-width="250" align="center" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">{{ scope.row.projectName }}</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="所属需求" min-width="250" align="center" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">{{ scope.row.requireName }}</template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="状态" min-width="150" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.statusString }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="是否免测" min-width="80" align="center">
|
|
|
- <template slot-scope="scope">{{ scope.row.noTestString }}</template>
|
|
|
+ <el-table-column label="健康状态" width="150" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.stageString }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="开发负责人" min-width="100" align="center">
|
|
|
<template
|
|
@@ -173,6 +167,24 @@
|
|
|
slot-scope="scope"
|
|
|
>{{ scope.row.qaObject !== null?scope.row.qaObject.name: '' }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="所属模块" width="150" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.moduleInfoName }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="是否免测" min-width="80" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.noTestString }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="缺陷数量" width="250" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.bugCount }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="所属需求" min-width="250" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.requireName }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="所属项目" min-width="250" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.projectName }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建人" min-width="120" align="center" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">{{ scope.row.createObject.name }}</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="创建日期" min-width="120" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.createTime }}</template>
|
|
|
</el-table-column>
|