diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index edbcd0aee..5afe49be1 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -1828,4 +1828,5 @@ module.exports = { projectProgressStatistics:'Project Progress Statistics', GRPSystemProjectProgressStatistics:'GRP system project progress statistics', statisticalNodes:'Statistical Nodes', + proportionWithInTheAreaOfResponsibility:'Proportion within the area of responsibility', } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index ee347b22c..c8e96fe35 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -1929,4 +1929,5 @@ module.exports = { projectProgressStatistics:'项目进度统计', GRPSystemProjectProgressStatistics:'GRP系统项目进度统计', statisticalNodes:'统计节点', + proportionWithInTheAreaOfResponsibility:'责任领域内占比', } \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue index 4bea95522..1d03677eb 100644 --- a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue +++ b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue @@ -6,6 +6,27 @@ {{$t('ParameteItemCollectionList')}}({{$t(this.$route.query.projectName)}}) — {{$t(this.$route.query.title)}} +
@@ -27,12 +28,12 @@
@@ -192,10 +193,10 @@
width: 83px;
font-size: 12px;
font-weight: 400;
- color: #6F7385;
+ color: #9C9FAC;
position: absolute;
left: 50%;
- top: 36px;
+ top: -36px;
transform: translate(-50%, -50%);
overflow: hidden;
display: -webkit-box;
@@ -229,13 +230,13 @@
.process-content-right-top {
font-size: 12px;
- color: #040B29;
width: 83px;
background: #fff;
display: inline-block;
overflow: hidden;
position: absolute;
- top: -12px;
+ color: #9C9FAC;
+ top: 57px;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
@@ -253,10 +254,12 @@
width: 83px;
font-size: 12px;
font-weight: 400;
- color: #6F7385;
+ color: #040B29;
+ background: #fff;
position: absolute;
left: 50%;
top: 36px;
+ line-height: 11px;
transform: translate(-50%, -50%);
overflow: hidden;
display: -webkit-box;
diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue
index de8b628f9..1837e9eed 100644
--- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue
+++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue
@@ -1433,6 +1433,10 @@
},
mounted() {
+ if (this.areaOfResponsibilityList && this.areaOfResponsibilityList.dutyTerritory) {
+ this.queryParam.dutyTerritory = this.areaOfResponsibilityList.dutyTerritory
+ this.queryParam = { ...this.queryParam }
+ }
this.JLoading = true
this.getHeader()
this.queryLawEngineerByProjectId()
@@ -1442,10 +1446,6 @@
this.getRoleByUserId(() => {
this.getAndUserId()
})
- if (this.areaOfResponsibilityList && this.areaOfResponsibilityList.dutyTerritory) {
- this.queryParam.dutyTerritory = this.areaOfResponsibilityList.dutyTerritory
- this.queryParam = { ...this.queryParam }
- }
},
computed: {
columnsFile() {
diff --git a/jero-web/src/views/projectManagement/components/projectStatus.vue b/jero-web/src/views/projectManagement/components/projectStatus.vue
index 71866f40a..0ebef98b0 100644
--- a/jero-web/src/views/projectManagement/components/projectStatus.vue
+++ b/jero-web/src/views/projectManagement/components/projectStatus.vue
@@ -59,7 +59,7 @@
this.$emit('projectStatusForm',this.activeKey)
},
currentStatus(item) {
- this.$emit('TaskListChange', item)
+ this.$emit('currentStatus', item)
},
versionStatisticsClick() {
this.$refs.versionStatisticsRef.addModel(JSON.parse(JSON.stringify(this.selectedRowKeys)))
diff --git a/jero-web/src/views/projectManagement/components/regulatoryCompliance.vue b/jero-web/src/views/projectManagement/components/regulatoryCompliance.vue
index f07000ca8..834ab877d 100644
--- a/jero-web/src/views/projectManagement/components/regulatoryCompliance.vue
+++ b/jero-web/src/views/projectManagement/components/regulatoryCompliance.vue
@@ -1,15 +1,22 @@