diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue b/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue
index 0551e59df..c2833f4be 100644
--- a/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue
+++ b/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue
@@ -45,13 +45,19 @@
-
{{val.name}}
-

-

-

-
{{val.time.slice(0,11)}}
+
+
+ {{val.time.slice(0,11)}}
+
+ {{val.name}}
+
+
+
+
+
@@ -111,6 +117,8 @@
getAction(this.url.timeline, query).then((res) => {
if (res.success) {
this.getTimelineList(res.result)
+ } else {
+ this.loadingMain = false
}
})
},
@@ -140,6 +148,8 @@
getAction(this.url.timelineList, query).then((res) => {
if (res.success) {
this.getEcharts(time, res.result)
+ } else {
+ this.loadingMain = false
}
})
},
@@ -218,8 +228,8 @@
}
contentRightText[0].style = 'display:none'
contentRightXian[0].style = 'display:none'
- let clientWidthOne = dataList[0].clientWidth
- clientWidthOne = clientWidthOne / length
+ let clientWidthOne = dataList[0].clientWidth * dataList.length
+ clientWidthOne = clientWidthOne / timeList.length
let num = Math.ceil(clientWidthOne / 31) * parseInt(this.handlingTime.slice(8, 10))
timeList.forEach((res, index) => {
if (res.slice(0, 7) == this.handlingTime.slice(0, 7)) {
@@ -308,7 +318,7 @@
width: 100%;
height: calc(100vh - 160px);
margin-bottom: 20px;
- padding: 25px 20px 10px 20px;
+ padding: 25px 50px 10px 20px;
box-sizing: border-box;
overflow: auto;
}
diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
index 1a70df1be..9cde8a7f5 100644
--- a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
+++ b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
@@ -71,11 +71,21 @@
-
{{val.name}}
-

-

-

-
{{val.time.slice(0,11)}}
+
+
+ {{val.time.slice(0,11)}}
+
+ {{val.name}}
+
+
+
+
+
+
@@ -242,6 +252,8 @@
getAction(this.url.timeline, query).then((res) => {
if (res.success) {
this.getTimelineList(res.result)
+ } else {
+ this.loadingMain = false
}
})
},
@@ -272,6 +284,8 @@
getAction(this.url.timelineList, query).then((res) => {
if (res.success) {
this.getEcharts(time, res.result)
+ } else {
+ this.loadingMain = false
}
})
},
@@ -451,7 +465,7 @@
width: 100%;
height: 500px;
margin-bottom: 20px;
- padding: 20px 0;
+ padding: 20px 58px 20px 10px;
box-sizing: border-box;
overflow: auto;
}