diff --git a/src/views/xm/core/xmIteration/XmIterationOverview.vue b/src/views/xm/core/xmIteration/XmIterationOverview.vue
index 0afa9d3a..824c823b 100644
--- a/src/views/xm/core/xmIteration/XmIterationOverview.vue
+++ b/src/views/xm/core/xmIteration/XmIterationOverview.vue
@@ -90,10 +90,10 @@
@@ -105,7 +105,7 @@
所有工作项及其完成情况
@@ -115,7 +115,7 @@
缺陷情况
@@ -207,7 +207,7 @@
迭代相关联产品与项目数
@@ -217,7 +217,7 @@
案例情况
@@ -329,6 +329,13 @@ export default {
},
series: [
{
+ label: {
+ normal:{
+ show: true,
+ position: 'top',
+ color:'#000000',
+ }
+ },
data: [
{
value: this.xmIteration.menuCnt,
@@ -458,7 +465,7 @@ export default {
label: {
normal:{
show: true,
- position: 'inside',
+ position: 'top',
color:'#000000',
}
},
@@ -607,6 +614,10 @@ export default {
.item {
display: flex;
justify-content: flex-start;
+ position: relative;
+ .progress-item{
+ position:absolute; width:80%;
+ }
}
.card-font {
@@ -649,10 +660,6 @@ export default {
cursor: pointer;
}
-.el-progress {
- width: 350px;
-}
-
.value {
cursor: pointer;
}
diff --git a/src/views/xm/core/xmProduct/XmProductOverview.vue b/src/views/xm/core/xmProduct/XmProductOverview.vue
index 2ba11af5..7e4e9fbc 100644
--- a/src/views/xm/core/xmProduct/XmProductOverview.vue
+++ b/src/views/xm/core/xmProduct/XmProductOverview.vue
@@ -90,10 +90,10 @@
@@ -105,7 +105,7 @@
所有工作项及其完成情况
@@ -115,7 +115,7 @@
缺陷情况
@@ -206,7 +206,7 @@
产品相关联项目与迭代数
@@ -216,7 +216,7 @@
案例情况
@@ -337,6 +337,13 @@ export default {
},
series: [
{
+ label: {
+ normal:{
+ show: true,
+ position: 'top',
+ color:'#000000',
+ }
+ },
data: [
{
value: this.xmProduct.menuCnt,
@@ -466,7 +473,7 @@ export default {
label: {
normal:{
show: true,
- position: 'inside',
+ position: 'top',
color:'#000000',
}
},
@@ -615,6 +622,10 @@ export default {
.item {
display: flex;
justify-content: flex-start;
+ position: relative;
+ .progress-item{
+ position:absolute; width:80%;
+ };
}
.card-font {
@@ -657,10 +668,6 @@ export default {
cursor: pointer;
}
-.el-progress {
- width: 350px;
-}
-
.value {
cursor: pointer;
}
diff --git a/src/views/xm/core/xmProject/XmProjectOverview.vue b/src/views/xm/core/xmProject/XmProjectOverview.vue
index 0323005e..acdb394b 100644
--- a/src/views/xm/core/xmProject/XmProjectOverview.vue
+++ b/src/views/xm/core/xmProject/XmProjectOverview.vue
@@ -90,10 +90,10 @@
@@ -105,7 +105,7 @@
所有工作项及其完成情况
@@ -115,7 +115,7 @@
缺陷情况
@@ -127,7 +127,7 @@
任务每日状态趋势
@@ -219,7 +219,7 @@
总预算情况
@@ -229,7 +229,7 @@
工作量分布
@@ -239,7 +239,7 @@
所含产品和迭代情况
@@ -284,7 +284,7 @@ export default {
totalTask: function() {
return this.selProject.totalTaskCnt;
},
- progress1: function (){
+ taskProgress: function (){
return Math.round(this.selProject.totalCompleteTaskCnt/this.selProject.totalTaskCnt*100);
},
taskStartTime: function (){
@@ -403,6 +403,13 @@ export default {
},
series: [
{
+ label: {
+ normal:{
+ show: true,
+ position: 'top',
+ color:'#000000',
+ }
+ },
data: [
{
value: this.selProject.menuCnt,
@@ -727,7 +734,7 @@ export default {
label: {
normal:{
show: true,
- position: 'inside',
+ position: 'top',
color:'#000000',
}
},
@@ -820,6 +827,10 @@ export default {
.item {
display: flex;
justify-content: flex-start;
+ position: relative;
+ .progress-item{
+ position:absolute; width:80%;
+ }
}
.card-font {
@@ -862,10 +873,6 @@ export default {
cursor: pointer;
}
-.el-progress {
- width: 350px;
-}
-
.value {
cursor: pointer;
}