|
@@ -42,9 +42,9 @@
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<th>技术分配人</th>
|
|
<th>技术分配人</th>
|
|
- <th>{{info.techUser}}</th>
|
|
|
|
|
|
+ <td>{{techUser}}</td>
|
|
<th>财务分配人</th>
|
|
<th>财务分配人</th>
|
|
- <th>{{info.finUser}}</th>
|
|
|
|
|
|
+ <td>{{finUser}}</td>
|
|
</tr>
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
<h3 class="toolbar mt20">
|
|
<h3 class="toolbar mt20">
|
|
@@ -119,6 +119,8 @@
|
|
loading: false,
|
|
loading: false,
|
|
id: undefined,
|
|
id: undefined,
|
|
roleType: '',
|
|
roleType: '',
|
|
|
|
+ finUser: '',
|
|
|
|
+ techUser: '',
|
|
info: {
|
|
info: {
|
|
projectLogList: []
|
|
projectLogList: []
|
|
},
|
|
},
|
|
@@ -166,6 +168,8 @@
|
|
//判断是科德管理员 还是企业角色
|
|
//判断是科德管理员 还是企业角色
|
|
getData() {
|
|
getData() {
|
|
getProjectInfoCommonApi(this.id).then(res => {
|
|
getProjectInfoCommonApi(this.id).then(res => {
|
|
|
|
+ this.finUser = res.data.finUser
|
|
|
|
+ this.techUser = res.data.techUser
|
|
if(this.projectOwner == '1') {
|
|
if(this.projectOwner == '1') {
|
|
this.info = res.data.entProject || {}
|
|
this.info = res.data.entProject || {}
|
|
if(this.info.projectLogList.length > 0) {
|
|
if(this.info.projectLogList.length > 0) {
|
|
@@ -191,7 +195,7 @@
|
|
}else {
|
|
}else {
|
|
this.list = this.info.projectLogList || []
|
|
this.list = this.info.projectLogList || []
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
},
|
|
},
|
|
cancel() {
|
|
cancel() {
|
|
this.$store.dispatch("tagsView/delView", this.$route); // 关闭当前tab
|
|
this.$store.dispatch("tagsView/delView", this.$route); // 关闭当前tab
|