|
@@ -33,6 +33,10 @@
|
|
<el-col :span="5" ><span class="gray_label">实际完成日期:</span></el-col><el-col :span="7" ><span>
|
|
<el-col :span="5" ><span class="gray_label">实际完成日期:</span></el-col><el-col :span="7" ><span>
|
|
{{project.finishDate==null?'-':project.finishDate}}</span></el-col>
|
|
{{project.finishDate==null?'-':project.finishDate}}</span></el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <el-row :gutter="10" v-if="yonghuUser.customDegreeActive == 1">
|
|
|
|
+ <el-col :span="5" ><span class="gray_label">{{yonghuUser.customDegreeName}}:</span></el-col><el-col :span="18" ><span>
|
|
|
|
+ {{project.associateDegreeNames}}</span></el-col>
|
|
|
|
+ </el-row>
|
|
</div>
|
|
</div>
|
|
<div class="box" style="margin-top:10px;">
|
|
<div class="box" style="margin-top:10px;">
|
|
<div><label>相关人员</label>
|
|
<div><label>相关人员</label>
|
|
@@ -442,7 +446,8 @@
|
|
title: "",
|
|
title: "",
|
|
rules: {
|
|
rules: {
|
|
name: [{ required: true, message: "请输入项目名称", trigger: "blur" }],
|
|
name: [{ required: true, message: "请输入项目名称", trigger: "blur" }],
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ yonghuUser: []
|
|
};
|
|
};
|
|
},
|
|
},
|
|
filters: {
|
|
filters: {
|
|
@@ -462,6 +467,24 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ userssHu() {
|
|
|
|
+ this.http.post('/time-type/getCompanyTimeSetting',{
|
|
|
|
+ companyId: this.user.companyId
|
|
|
|
+ },
|
|
|
|
+ res => {
|
|
|
|
+ if (res.code == "ok") {
|
|
|
|
+ this.yonghuUser = res.data
|
|
|
|
+ console.log(this.yonghuUser)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ error => {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: error,
|
|
|
|
+ type: "error"
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ );
|
|
|
|
+ },
|
|
getProgressData() {
|
|
getProgressData() {
|
|
this.http.post("/project-profession/getProgressData", {projectId: this.curProjectId},
|
|
this.http.post("/project-profession/getProgressData", {projectId: this.curProjectId},
|
|
res => {
|
|
res => {
|
|
@@ -1320,6 +1343,7 @@
|
|
this.getProjectBaseData(this.curProjectId);
|
|
this.getProjectBaseData(this.curProjectId);
|
|
this.getProjectNotifyUserList(this.curProjectId);
|
|
this.getProjectNotifyUserList(this.curProjectId);
|
|
this.getProgressData();
|
|
this.getProgressData();
|
|
|
|
+ this.userssHu()
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|