|
|
@ -26,9 +26,17 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div :class="['info-prop',{'info-prop-vis':source==='visiual'}]" |
|
|
|
v-if="projectInfo.departmentNameList.length > 0"> |
|
|
|
v-if="projectInfo.departmentList.length > 0"> |
|
|
|
<span class="info-title-2">当前处理部门:</span> |
|
|
|
<span>{{ projectInfo.departmentNameList.join("、") }}</span> |
|
|
|
<div class="div_depart"> |
|
|
|
<div v-for="(item,index) in projectInfo.departmentList" |
|
|
|
:key="index" |
|
|
|
class="div_depart"> |
|
|
|
<span>{{item.departmentName+'('+ item.staffList.join("、")+')' }}</span> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div :class="['info-prop',{'info-prop-vis':source==='visiual'}]" |
|
|
@ -967,6 +975,17 @@ export default { |
|
|
|
|
|
|
|
if (code === 0) { |
|
|
|
this.projectInfo = data; |
|
|
|
// this.projectInfo.departmentList = [ |
|
|
|
// { |
|
|
|
// departmentName: "市北区", |
|
|
|
// staffList: ["薛松", "刘建军"] |
|
|
|
// }, { |
|
|
|
// departmentName: "市北区", |
|
|
|
// staffList: ["薛松", "刘建军"] |
|
|
|
// } |
|
|
|
// ] |
|
|
|
|
|
|
|
|
|
|
|
if (data.projectStatus == "pending") { |
|
|
|
this.getMyDepartmentList(); |
|
|
|
this.getAssistanceUnitList(); |
|
|
@ -1254,3 +1273,10 @@ export default { |
|
|
|
src="@/assets/scss/modules/shequzhili/project-info.scss" |
|
|
|
scoped |
|
|
|
></style> |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
.div_depart { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
} |
|
|
|
</style> |
|
|
|