|
@@ -99,7 +99,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="belongingProjectName" label="归属的项目" min-width="140" show-overflow-tooltip align="center">
|
|
|
<template v-slot="scope">
|
|
|
- {{ getProjectName(scope.row.belongingProject) }}
|
|
|
+ {{ scope.row.belongingProjectName }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="pm" label="PM" min-width="100" show-overflow-tooltip align="center">
|
|
@@ -297,13 +297,13 @@ export default {
|
|
|
})
|
|
|
this.getTableData()
|
|
|
},
|
|
|
- getProjectName(id) {
|
|
|
- const ret = this.projectOb[id]
|
|
|
- if (typeof ret === 'undefined') {
|
|
|
- return '无归属项目'
|
|
|
- }
|
|
|
- return ret
|
|
|
- },
|
|
|
+ // getProjectName(id) {
|
|
|
+ // const ret = this.projectOb[id]
|
|
|
+ // if (typeof ret === 'undefined') {
|
|
|
+ // return '无归属项目'
|
|
|
+ // }
|
|
|
+ // return ret
|
|
|
+ // },
|
|
|
getBizName(id) {
|
|
|
const ret = this.bizTypeOb[id]
|
|
|
if (typeof ret === 'undefined') {
|