|
@@ -60,7 +60,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="状态" width="100" align="center">
|
|
|
+ <el-table-column label="状态" width="150" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-select
|
|
|
v-model="scope.row.status"
|
|
@@ -86,16 +86,16 @@
|
|
|
<el-table-column label="测试负责人" width="100" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.qaObject ? 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.optionsObject ? scope.row.optionsObject.endTime : '' }}</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="所属模块" width="200" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.moduleInfoName }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="跟版客户端" width="150" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.involveAppString || '无' }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="交付日期" width="150" align="center" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">{{ scope.row.optionsObject ? scope.row.optionsObject.endTime : '' }}</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="缺陷数量" width="50" align="center" show-overflow-tooltip>
|
|
|
+ <el-table-column label="缺陷数量" width="100" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.bugCount }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="任务进度" width="150" align="center">
|