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. 5
      src/views/xm/rpt/product/questionSort.vue
  4. 57
      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: [ series: [
{ {
data: this.xmMenuSortsCpd, data: this.xmMenuSortsCpd,
type: 'bar'
type: 'bar',
label:{
show: true,
},
} }
] ]
} }

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

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

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

@ -242,7 +242,10 @@
series: [ series: [
{ {
data: this.xmQuestionSortsCpd, data: this.xmQuestionSortsCpd,
type: 'bar',
type: 'bar',
label:{
show: true,
},
markPoint: { markPoint: {
data: [ data: [
{ type: 'max', name: 'Max' }, { type: 'max', name: 'Max' },

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

@ -177,81 +177,34 @@
{ {
name:'待领取', name:'待领取',
data: this.taskUnstartCntCpd, data: this.taskUnstartCntCpd,
type: 'line',
markPoint: {
data: [
{ type: 'max', name: 'Max' },
{ type: 'min', name: 'Min' }
]
},
type: 'line',
}, },
{ {
name:'执行中', name:'执行中',
data: this.taskExecCntCpd, data: this.taskExecCntCpd,
type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'blue',
lineStyle: {
// 线
color: 'blue'
}
}
},
type: 'line',
}, },
{ {
name:'已完成', name:'已完成',
data: this.taskFinishCntCpd, data: this.taskFinishCntCpd,
type: 'line', type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'green',
lineStyle: {
// 线
color: 'green'
}
}
},
smooth: true,
}, },
{ {
name:'已结算', name:'已结算',
data: this.taskCloseCntCpd, data: this.taskCloseCntCpd,
type: 'line', type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'red',
lineStyle: {
// 线
color: 'red'
}
}
},
smooth: true,
}, },
{ {
name:'已关闭', name:'已关闭',
data: this.taskCloseCntCpd, data: this.taskCloseCntCpd,
type: 'line', type: 'line',
smooth: true,
itemStyle: {
normal: {
//
color: 'red',
lineStyle: {
// 线
color: 'red'
}
}
},
smooth: true,
} }
] ]
} }

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

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

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

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

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

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

Loading…
Cancel
Save