Browse Source

优化

master
陈裕财 3 years ago
parent
commit
577750c9e9
  1. 5
      src/views/xm/rpt/product/menuSort.vue
  2. 1
      src/views/xm/rpt/product/questionDayTrend.vue
  3. 3
      src/views/xm/rpt/product/questionSort.vue
  4. 47
      src/views/xm/rpt/project/taskDayTrend.vue
  5. 3
      src/views/xm/rpt/project/taskSort.vue
  6. 3
      src/views/xm/rpt/testPlan/testDayTimesCalc.vue
  7. 6
      src/views/xm/rpt/testPlan/testPlanCaseUserDist.vue

5
src/views/xm/rpt/product/menuSort.vue

@ -201,7 +201,10 @@
series: [
{
data: this.xmMenuSortsCpd,
type: 'bar'
type: 'bar',
label:{
show: true,
},
}
]
}

1
src/views/xm/rpt/product/questionDayTrend.vue

@ -236,7 +236,6 @@
name:'已解决',
data: this.resolvedBugsCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//

3
src/views/xm/rpt/product/questionSort.vue

@ -243,6 +243,9 @@
{
data: this.xmQuestionSortsCpd,
type: 'bar',
label:{
show: true,
},
markPoint: {
data: [
{ type: 'max', name: 'Max' },

47
src/views/xm/rpt/project/taskDayTrend.vue

@ -178,29 +178,12 @@
name:'待领取',
data: this.taskUnstartCntCpd,
type: 'line',
markPoint: {
data: [
{ type: 'max', name: 'Max' },
{ type: 'min', name: 'Min' }
]
},
},
{
name:'执行中',
data: this.taskExecCntCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'blue',
lineStyle: {
// 线
color: 'blue'
}
}
},
},
{
@ -208,16 +191,6 @@
data: this.taskFinishCntCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'green',
lineStyle: {
// 线
color: 'green'
}
}
},
},
{
@ -225,16 +198,6 @@
data: this.taskCloseCntCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'red',
lineStyle: {
// 线
color: 'red'
}
}
},
},
{
@ -242,16 +205,6 @@
data: this.taskCloseCntCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'red',
lineStyle: {
// 线
color: 'red'
}
}
},
}
]
}

3
src/views/xm/rpt/project/taskSort.vue

@ -172,6 +172,9 @@
{
data: this.xmTaskSortsCpd,
type: 'bar',
label:{
show: true,
},
markPoint: {
data: [
{ type: 'max', name: 'Max' },

3
src/views/xm/rpt/testPlan/testDayTimesCalc.vue

@ -227,6 +227,9 @@
name:'次数',
data: this.testDayTimesCpd,
type: 'bar',
label:{
show: true,
},
smooth: true,
markPoint: {
data: [

6
src/views/xm/rpt/testPlan/testPlanCaseUserDist.vue

@ -207,6 +207,9 @@
name: '已执行',
type: 'bar',
data: this.hadExecCpd,
label:{
show: true,
},
markPoint: {
data: [
{ type: 'max', name: 'Max' },
@ -218,6 +221,9 @@
name: '未执行',
type: 'bar',
data: this.notExecCpd,
label:{
show: true,
},
markPoint: {
data: [
{ type: 'max', name: 'Max' },

Loading…
Cancel
Save