You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
321 lines
8.8 KiB
321 lines
8.8 KiB
<template>
|
|
<section>
|
|
|
|
|
|
<el-row :gutter="5" >
|
|
<el-col :span="18">
|
|
<div>
|
|
<div class="echart-box" :id="this.id"></div>
|
|
<div class="progress"></div>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="6" v-if="showParams">
|
|
<el-popover trigger="manual" v-model="filterVisible" style="float:right;" width="500">
|
|
<el-button slot="reference" style="margin-top:10px;" icon="el-icon-more" @click="filterVisible=!filterVisible"></el-button>
|
|
<el-row>
|
|
<el-button type="danger" icon="el-icon-delete" @click="$emit('delete',cfg)">从报告移出该报表</el-button>
|
|
<el-button icon="el-icon-close" style="float:right;" @click="filterVisible=false">关闭</el-button>
|
|
</el-row>
|
|
<el-row>
|
|
<el-form :model="params" class="padding" :style="{width:'100%',overflow: 'auto'}" ref="filtersRef">
|
|
|
|
<el-form-item label="归属项目" >
|
|
<xm-project-select v-if="!xmProject || !xmProject.id" ref="xmProjectSelect" style="display:inline;" :auto-select="false" :link-project-id="xmProject?xmProject.id:null" @row-click="onProjectSelected" @clear="onProjectClear"></xm-project-select>
|
|
<span v-else>{{xmProject.id}} <span v-if="xmProject.name"><br/>{{ xmProject.name }} </span> </span>
|
|
</el-form-item>
|
|
<el-form-item label="日期区间">
|
|
<br>
|
|
<mdp-date-range v-model="params" value-format="yyyy-MM-dd" start-key="startBizDate" end-key="endBizDate"></mdp-date-range>
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
<el-button type="primary" style="float:right;" icon="el-icon-search" @click="listXmProjectStateHis">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-row>
|
|
</el-popover>
|
|
|
|
</el-col>
|
|
</el-row>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import util from '@/common/js/util';//全局公共库
|
|
import { initSimpleDicts } from '@/api/mdp/meta/item';//下拉框数据查询
|
|
import { mapGetters } from 'vuex'
|
|
|
|
import { listXmProjectStateHis } from '@/api/xm/core/xmProjectStateHis';
|
|
import XmProjectSelect from '@/views/xm/core/components/XmProjectSelect';//新增界面
|
|
export default {
|
|
|
|
components: {
|
|
XmProjectSelect,
|
|
},
|
|
props:['id','cfg','category','showToolBar','showParams','isRptCfg','xmProduct','xmProject'],
|
|
computed: {
|
|
...mapGetters([
|
|
'userInfo','roles'
|
|
]),
|
|
datesCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=>i.bizDate)
|
|
}
|
|
},
|
|
taskCloseCntCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=>i.taskCloseCnt)
|
|
}
|
|
},
|
|
taskUnstartCntCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=> i.taskUnstartCnt)
|
|
}
|
|
},
|
|
taskExecCntCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=> i.taskExecCnt)
|
|
}
|
|
},
|
|
|
|
taskFinishCntCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=>i.taskFinishCnt)
|
|
}
|
|
},
|
|
taskSetCntCpd(){
|
|
if(this.xmProjectStateHiss.length==0){
|
|
return []
|
|
}else{
|
|
return this.xmProjectStateHiss.map(i=>i.taskSetCnt)
|
|
}
|
|
},
|
|
titleCpd(){
|
|
|
|
var preName=""
|
|
if(this.filters.testPlan && this.filters.testPlan.id){
|
|
preName=`测试计划【${this.filters.testPlan.name}】`
|
|
}else if(this.filters.testCasedb && this.filters.testCasedb.id){
|
|
preName=`测试库【${this.filters.testCasedb.name}】`
|
|
}else if(this.filters.iteration && this.filters.iteration.id){
|
|
preName=`迭代【${this.filters.iteration.iterationName}】`
|
|
}else if(this.filters.project && this.filters.project.id){
|
|
if(this.filters.project.name){
|
|
preName=`项目【${this.filters.project.name}】`
|
|
}else{
|
|
preName=`项目【${this.filters.project.id}】`
|
|
}
|
|
}else if(this.filters.product && this.filters.product.id){
|
|
if(this.filters.product.productName){
|
|
preName=`产品【${this.filters.product.productName}】`
|
|
}else{
|
|
preName=`产品【${this.filters.product.id}】`
|
|
}
|
|
|
|
}
|
|
return preName+"任务每日分布"
|
|
}
|
|
},
|
|
watch: {
|
|
datesCpd(){
|
|
|
|
this.$nextTick(()=>{
|
|
this.drawCharts();
|
|
})
|
|
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
filterVisible:false,
|
|
filters:{
|
|
product:null,
|
|
project:null,
|
|
testPlan:null,
|
|
iteration:null,
|
|
testCasedb:null,
|
|
},
|
|
params:{
|
|
|
|
},
|
|
title:'',//报表配置项
|
|
remark:'', //报表配置项
|
|
dicts:{},//下拉选择框的所有静态数据 params=[{categoryId:'0001',itemCode:'sex'}] 返回结果 {'sex':[{optionValue:'1',optionName:'男',seqOrder:'1',fp:'',isDefault:'0'},{optionValue:'2',optionName:'女',seqOrder:'2',fp:'',isDefault:'0'}]}
|
|
load:{ list: false, edit: false, del: false, add: false },//查询中...
|
|
dateRanger:[],
|
|
maxTableHeight:300,
|
|
visible:false,
|
|
xmProjectStateHiss:[],
|
|
|
|
}//end return
|
|
},//end data
|
|
methods: {
|
|
listXmProjectStateHis(){
|
|
if(!this.filters.project){
|
|
this.$notify({position:'bottom-left',showClose:true,message:'请先选中项目',type:'warning'})
|
|
return;
|
|
}
|
|
var params={...this.params,orderBy:'biz_date asc'}
|
|
|
|
listXmProjectStateHis(params).then(res=>{
|
|
this.xmProjectStateHiss=res.data.tips.isOk?res.data.data:this.xmProjectStateHiss;
|
|
})
|
|
},
|
|
open(){
|
|
this.visible=true;
|
|
this.filters.testPlan=this.xmTestPlan
|
|
this.filters.product=this.xmProduct
|
|
this.filters.project=this.xmProject
|
|
this.filters.iteration=this.xmIteration
|
|
this.filters.testCasedb=this.xmTestCasedb
|
|
|
|
if( this.filters.testPlan && this.filters.testPlan.id){
|
|
this.params.planId= this.filters.testPlan.id
|
|
}
|
|
|
|
if( this.filters.product && this.filters.product.id){
|
|
this.params.productId= this.filters.product.id
|
|
}
|
|
|
|
if( this.filters.project && this.filters.project.id){
|
|
this.params.projectId= this.filters.project.id
|
|
}
|
|
|
|
if( this.filters.iteration && this.filters.iteration.id){
|
|
this.params.iterationId= this.filters.iteration.id
|
|
}
|
|
|
|
|
|
if( this.filters.testCasedb && this.filters.testCasedb.id){
|
|
this.params.casedbId= this.filters.testCasedb.id
|
|
}
|
|
if(this.cfg && this.cfg.id){
|
|
this.params=this.cfg.params
|
|
this.title=this.cfg.title
|
|
this.remark=this.cfg.remark
|
|
}
|
|
if(this.showToolBar && !this.title){
|
|
this.title="企业工作项每日趋势图"
|
|
}
|
|
if(this.$refs['xmProjectSelect'])this.$refs['xmProjectSelect'].clearSelect();
|
|
this.$nextTick(()=>{
|
|
this.listXmProjectStateHis();
|
|
})
|
|
|
|
},
|
|
drawCharts() {
|
|
this.myChart = this.$echarts.init(document.getElementById(this.id));
|
|
this.myChart.setOption(
|
|
{
|
|
title: {
|
|
text: this.titleCpd,
|
|
left: 'center'
|
|
},
|
|
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
},
|
|
barMaxWidth: 100,
|
|
toolbox: {
|
|
show: true,
|
|
top:"5%",
|
|
right:"10px",
|
|
feature: {
|
|
dataView: { show: true, readOnly: false },
|
|
magicType: { show: true, type: ['line', 'bar'] },
|
|
|
|
saveAsImage: { show: true }
|
|
}
|
|
},
|
|
|
|
calculable: true,
|
|
legend: {
|
|
bottom: 'bottom',
|
|
data: ['待领取','执行中','已验收','已结算','已关闭']
|
|
},
|
|
xAxis: {
|
|
type: 'category',
|
|
data: this.datesCpd
|
|
},
|
|
yAxis: {
|
|
type: 'value'
|
|
},
|
|
series: [
|
|
{
|
|
name:'待领取',
|
|
data: this.taskUnstartCntCpd,
|
|
type: 'line',
|
|
},
|
|
|
|
{
|
|
name:'执行中',
|
|
data: this.taskExecCntCpd,
|
|
type: 'line',
|
|
},
|
|
|
|
{
|
|
name:'已验收',
|
|
data: this.taskFinishCntCpd,
|
|
type: 'line',
|
|
smooth: true,
|
|
},
|
|
|
|
{
|
|
name:'已结算',
|
|
data: this.taskSetCntCpd,
|
|
type: 'line',
|
|
smooth: true,
|
|
},
|
|
|
|
{
|
|
name:'已关闭',
|
|
data: this.taskCloseCntCpd,
|
|
type: 'line',
|
|
smooth: true,
|
|
}
|
|
]
|
|
}
|
|
)
|
|
},
|
|
|
|
onProjectSelected(project){
|
|
this.filters.project=project
|
|
},
|
|
|
|
onProjectClear(){
|
|
this.filters.project=null
|
|
},
|
|
},//end method
|
|
mounted() {
|
|
/**
|
|
initSimpleDicts('all',['planType','xmTaskSettleSchemel','taskType','priority','taskState'] ).then(res=>{
|
|
this.dicts=res.data.data;
|
|
})
|
|
*/
|
|
//this.maxTableHeight = util.calcTableMaxHeight(this.$refs.filtersRef.$el)
|
|
//this.charts();
|
|
this.open();
|
|
|
|
}//end mounted
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.image {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
</style>
|