|
@@ -90,14 +90,18 @@
|
|
|
style="width: 100%; margin-bottom: 20px;"
|
|
|
show-overflow-tooltip="true"
|
|
|
>
|
|
|
- <el-table-column prop="bugName" label="需求" align="center" min-width="250" show-overflow-tooltip>
|
|
|
+ <el-table-column prop="name" label="需求" min-width="250" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <span class="didi-hover">{{ scope.row.bugName }}</span>
|
|
|
+ <span class="didi-hover" @click="goRequired(scope.row.id)">{{ scope.row.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="priorityLevel" label="优先级" align="center" min-width="100" show-overflow-tooltip />
|
|
|
- <el-table-column prop="priorityName" label="PM" align="center" min-width="100" show-overflow-tooltip />
|
|
|
- <el-table-column prop="creatorList" label="跟版客户端" align="center" min-width="90" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="priorityName" label="优先级" min-width="100" show-overflow-tooltip />
|
|
|
+ <el-table-column label="PM" min-width="100" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="didi-hover">{{ scope.row.pmMemberInfoResponse.name }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="referredClientTypeName" label="跟版客户端" min-width="90" show-overflow-tooltip />
|
|
|
</el-table>
|
|
|
|
|
|
<normal-area id="report-template" :value.sync="fromCreateData.content" :height="500" />
|
|
@@ -225,6 +229,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ goRequired(id) {
|
|
|
+ this.$router.push({ name: '需求详情', query: { id: id }})
|
|
|
+ },
|
|
|
+
|
|
|
// 创建提测报告
|
|
|
reportreleaseCreate(val) {
|
|
|
this.$refs.fromCreateData.validate((valid) => {
|