Browse Source

优化

master
陈裕财 3 years ago
parent
commit
b3a587d880
  1. 10
      src/views/xm/core/xmProject/XmProjectMng.vue
  2. 446
      src/views/xm/core/xmProject/XmProjectOverview.vue

10
src/views/xm/core/xmProject/XmProjectMng.vue

@ -109,7 +109,7 @@
<div class="info-task" title="已完成需求数 / 总需求数 "> <div class="info-task" title="已完成需求数 / 总需求数 ">
<span> <span>
<span class="item-total finish-task">{{p.menuFinishCnt==null?0:p.menuFinishCnt}}</span>
<span class="item-total finish-task">{{menuFinishCntCalc(p)}}</span>
<span style="margin: 0 .25rem !important;">/</span> <span style="margin: 0 .25rem !important;">/</span>
<span class="item-type total-task">{{p.menuCnt==null?0:p.menuCnt}}</span> <span class="item-type total-task">{{p.menuCnt==null?0:p.menuCnt}}</span>
</span> </span>
@ -127,7 +127,7 @@
--> -->
<div class="info-task" title="已完成 / 总任务数 "> <div class="info-task" title="已完成 / 总任务数 ">
<span> <span>
<span class="item-total finish-task">{{p.taskFinishCnt==null?0:p.taskFinishCnt}}</span>
<span class="item-total finish-task">{{((p.taskFinishCnt||0)+(p.taskSetCnt||0)+(p.taskCloseCnt||0))}}</span>
<span style="margin: 0 .25rem !important;">/</span> <span style="margin: 0 .25rem !important;">/</span>
<span class="item-type total-task">{{p.taskCnt==null?0:p.taskCnt}}</span> <span class="item-type total-task">{{p.taskCnt==null?0:p.taskCnt}}</span>
</span> </span>
@ -224,7 +224,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="taskCnt" label="任务数" sortable min-width="120" > <el-table-column prop="taskCnt" label="任务数" sortable min-width="120" >
<template slot-scope="scope"> <template slot-scope="scope">
<span title="完成的任务数 / 任务总数 ">{{scope.row.taskCnt>0?scope.row.taskFinishCnt+'&nbsp;/&nbsp;'+scope.row.taskCnt:''}}</span>
<span title="完成的任务数 / 任务总数 ">{{ ((scope.row.taskFinishCnt||0)+(scope.row.taskSetCnt||0)+(scope.row.taskCloseCnt||0))+'&nbsp;/&nbsp;'+(scope.row.taskCnt||0)}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="bugCnt" label="缺陷" sortable min-width="120" > <el-table-column prop="bugCnt" label="缺陷" sortable min-width="120" >
@ -882,6 +882,10 @@
guiderStart(forceDisplayWhileClosed) { // guiderStart(forceDisplayWhileClosed) { //
Guider.startByName('xmProjectMng',forceDisplayWhileClosed); Guider.startByName('xmProjectMng',forceDisplayWhileClosed);
}, },
menuFinishCntCalc(project){
var allFinishCnt= (project.menuFinishCnt||0 )+ (project.menuCloseCnt||0)
return allFinishCnt;
}
/**end 自定义函数请在上面加**/ /**end 自定义函数请在上面加**/
},//end methods },//end methods

446
src/views/xm/core/xmProject/XmProjectOverview.vue

@ -1,18 +1,18 @@
<template> <template>
<section> <section>
<el-row class="page-main" :style="{overflowX: 'hidden',height:maxTableHeight+'px'}" ref="table">
<el-row :gutter="10" style="margin-bottom:10px">
<el-row :style="{overflowX: 'hidden',height:maxTableHeight+'px'}" ref="table">
<el-row :gutter="10">
<el-col :span="8" > <el-col :span="8" >
<el-card class="box-card" style="padding:0px ;height:425px"> <el-card class="box-card" style="padding:0px ;height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>项目信息</span> <span>项目信息</span>
</div> </div>
<el-row style="margin-bottom:18px">
<el-row style="margin-bottom:10px">
<el-row> <el-row>
<span>项目负责人</span>&nbsp;<span><b>{{pmUsername}}</b></span> <span>项目负责人</span>&nbsp;<span><b>{{pmUsername}}</b></span>
</el-row> </el-row>
</el-row> </el-row>
<el-row style="margin-bottom:18px">
<el-row style="margin-bottom:10px">
<el-col :span="8" @click=""> <el-col :span="8" @click="">
<div class="item"> <div class="item">
<div class="icon" style="background-color: rgb(79, 140, 255);"> <div class="icon" style="background-color: rgb(79, 140, 255);">
@ -49,7 +49,7 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
<el-row style="margin-bottom:18px">
<el-row style="margin-bottom:10px">
<div class="item"> <div class="item">
<div class="icon2" style="background-color: rgb(204, 204, 204);"> <div class="icon2" style="background-color: rgb(204, 204, 204);">
<i class="el-icon-date"></i> <i class="el-icon-date"></i>
@ -61,35 +61,31 @@
</div> </div>
</div> </div>
</el-row> </el-row>
<el-row style="margin-bottom:18px">
<el-row style="margin-bottom:10px">
<div class="item"> <div class="item">
<div class="icon2" style="background-color: rgb(204, 204, 204);"> <div class="icon2" style="background-color: rgb(204, 204, 204);">
<i class="el-icon-star-off"></i> <i class="el-icon-star-off"></i>
</div> </div>
<div class="info"> <div class="info">
<div class="title"> 需求数 {{this.selProject.menuCnt}}</div>
</div>
</div>
</el-row>
<el-row style="margin-bottom:18px">
<div class="item">
<div class="icon2" style="background-color: rgb(204, 204, 204);">
<i class="el-icon-refresh"></i>
</div>
<div class="info">
<div class="title"> 迭代数 {{(this.selProject.iterationCnt==null?0:this.selProject.iterationCnt)}} </div>
<div class="title"> 需求数 {{this.selProject.menuCnt||0}}</div>
</div> </div>
</div> </div>
</el-row> </el-row>
<el-row style="margin-bottom:18px">
<el-row style="margin-bottom:10px">
<div class="item"> <div class="item">
<div class="icon2" style="background-color: rgb(204, 204, 204);"> <div class="icon2" style="background-color: rgb(204, 204, 204);">
<i class="el-icon-alarm-clock"></i> <i class="el-icon-alarm-clock"></i>
</div> </div>
<div> <div>
<div class="progress-item"> <div class="progress-item">
<el-progress :percentage="taskProgress"></el-progress>
<div class="title">任务进度</div>
<el-progress :percentage="taskProgress">
</el-progress>
<el-tag v-if="planProgress>taskProgress" type="danger" effect="dark">整体进度 落后{{ planProgress-taskProgress }}%</el-tag>
<el-tag v-else-if="planProgress<taskProgress" type="warning" effect="dark">整体进度 超前{{ taskProgress-planProgress }}%</el-tag>
<el-tag v-else effect="dark" type="success">整体进度 理想</el-tag>
<div class="title">
</div>
</div> </div>
</div> </div>
</div> </div>
@ -109,25 +105,48 @@
<el-col :span="8" > <el-col :span="8" >
<el-card class="box-card" style="height:425px"> <el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>缺陷情况</span>
<span>需求情况</span>
</div> </div>
<div> <div>
<div id="bugPieChart" :style="{width: '100%', height: '410px'}"></div>
<div id="menuChart" :style="{width: '100%', height: '320px'}"></div>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
</el-row>
<el-row :gutter="10" style="margin-bottom:10px">
<el-col :span="12" >
<el-col :span="8" >
<el-card class="box-card" style="padding:0px ;height:425px"> <el-card class="box-card" style="padding:0px ;height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>任务每日状态趋势</span>
<span>任务状态分布</span>
</div> </div>
<div> <div>
<div id="taskChart" :style="{width: '100%', height: '320px'}"></div> <div id="taskChart" :style="{width: '100%', height: '320px'}"></div>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
<el-col :span="8" >
<el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix">
<span>测试用例情况</span>
</div>
<div>
<div id="testCasePieChart" :style="{width: '100%', height: '320px'}"></div>
</div>
</el-card>
</el-col>
<el-col :span="8" >
<el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix">
<span>缺陷情况</span>
</div>
<div>
<div id="bugPieChart" :style="{width: '100%', height: '320px'}"></div>
</div>
</el-card>
</el-col>
</el-row>
<el-row :gutter="10" style="margin-bottom:10px">
<el-col :span="12" > <el-col :span="12" >
<el-card class="box-card" style="padding:0px ;height:425px"> <el-card class="box-card" style="padding:0px ;height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
@ -139,28 +158,28 @@
<el-col :span="8"> <el-col :span="8">
<div> <div>
<div style="text-align:center;"> <div style="text-align:center;">
<span style="font-size:24px;" v-text="this.selProject.estimateWorkload"></span>
<span style="font-size:24px;" v-text="this.selProject.budgetWorkload"></span>
<span style="font-size:5px;">h</span> <span style="font-size:5px;">h</span>
</div> </div>
<div style="text-align:center;font-size:5px;">估工时</div>
<div style="text-align:center;font-size:5px;">估工时</div>
</div> </div>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<div> <div>
<div style="text-align:center;"> <div style="text-align:center;">
<span style="font-size:24px;" v-text="this.selProject.actWorkload"></span>
<span style="font-size:24px;" v-text="this.selProject.estimateWorkload"></span>
<span style="font-size:5px;">h</span> <span style="font-size:5px;">h</span>
</div> </div>
<div style="text-align:center;font-size:5px;">登记工时</div>
<div style="text-align:center;font-size:5px;">应完成工时</div>
</div> </div>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<div> <div>
<div style="text-align:center;"> <div style="text-align:center;">
<span style="font-size:24px;" v-text="workloadProgress"></span>
<span style="font-size:5px;">%</span>
<span style="font-size:24px;" v-text="this.selProject.actWorkload"></span>
<span style="font-size:5px;">h</span>
</div> </div>
<div style="text-align:center;font-size:5px;">工时进度</div>
<div style="text-align:center;font-size:5px;" title="已登记的工时">已完成工时</div>
</div> </div>
</el-col> </el-col>
</div> </div>
@ -197,46 +216,46 @@
</div> </div>
</el-row> </el-row>
<el-row> <el-row>
<span style="margin-left:20px;">项目预计进度</span>
<span style="margin-left:20px;" title="应完成工时/总预估工时">预计进度</span>
<el-progress style="width: 90%;margin-left:20px;margin-top: 10px;margin-bottom: 20px;" :stroke-width="14" :percentage="planProgress"></el-progress> <el-progress style="width: 90%;margin-left:20px;margin-top: 10px;margin-bottom: 20px;" :stroke-width="14" :percentage="planProgress"></el-progress>
</el-row> </el-row>
<el-row> <el-row>
<span style="margin-left:20px;">项目实际进度</span>
<span style="margin-left:20px;" title="实际工时/总预估工时">实际进度</span>
<el-progress style="width: 90%;margin-left:20px;margin-top: 10px;" color="#47CBF6" :stroke-width="14" :percentage="realProgress"></el-progress> <el-progress style="width: 90%;margin-left:20px;margin-top: 10px;" color="#47CBF6" :stroke-width="14" :percentage="realProgress"></el-progress>
</el-row> </el-row>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
</el-row>
<el-row :gutter="10" style="margin-bottom:10px">
<el-col :span="8" >
<el-col :span="12" >
<el-card class="box-card" style="height:425px"> <el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>总预算情况</span>
<span>合作开发工作量分布</span>
</div> </div>
<div> <div>
<div id="planTotalCostPie" :style="{width: '100%', height: '410px'}"></div>
<div id="workloadDistribution" :style="{width: '100%', height: '320px'}"></div>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
</el-row>
<el-row :gutter="10" style="margin-bottom:10px">
<el-col :span="8" > <el-col :span="8" >
<el-card class="box-card" style="height:425px"> <el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>工作量分布</span>
<span>总预算情况</span>
</div> </div>
<div> <div>
<div id="workloadDistribution" :style="{width: '100%', height: '410px'}"></div>
<div id="planTotalCostPie" :style="{width: '100%', height: '320px'}"></div>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
<el-col :span="8" > <el-col :span="8" >
<el-card class="box-card" style="height:425px"> <el-card class="box-card" style="height:425px">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span>所含产品和迭代情况</span>
<span>关联产品和迭代情况</span>
</div> </div>
<div> <div>
<div id="iterationAndProduct" :style="{width: '100%', height: '350px'}"></div>
<div id="iterationAndProduct" :style="{width: '100%', height: '320px'}"></div>
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
@ -332,7 +351,8 @@ export default {
watch:{ watch:{
xmProjectStateCpd:function(){ xmProjectStateCpd:function(){
this.drawAllBar(); this.drawAllBar();
this.drawTaskByDate();
this.drawTaskPie();
this.drawTestCasePie();
this.drawPieBug(); this.drawPieBug();
this.drawCostPie(); this.drawCostPie();
this.drawWorkload(); this.drawWorkload();
@ -369,7 +389,7 @@ export default {
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: ['需求', '任务', '缺陷']
data: ['需求', '任务','用例', '缺陷']
}, },
series: [ series: [
{ {
@ -385,12 +405,20 @@ export default {
value: this.selProject.menuCnt, value: this.selProject.menuCnt,
itemStyle: { itemStyle: {
normal:{ normal:{
color: '#99CCFF'
color: '#91CC75'
} }
} }
}, },
{ {
value: this.selProject.taskCnt, value: this.selProject.taskCnt,
itemStyle: {
normal:{
color: '#FAC858'
}
}
},
{
value: this.selProject.testCases,
itemStyle: { itemStyle: {
normal:{ normal:{
color: '#99CCFF' color: '#99CCFF'
@ -401,7 +429,7 @@ export default {
value: this.selProject.bugCnt, value: this.selProject.bugCnt,
itemStyle: { itemStyle: {
normal:{ normal:{
color: '#99CCFF'
color: '#EE6666'
} }
} }
}, },
@ -414,69 +442,180 @@ export default {
// //
allChart.setOption(option); allChart.setOption(option);
}, },
drawTaskByDate() {
let taskChart = this.$echarts.init(document.getElementById("taskChart"));
drawMenuPie() {
let taskChart = this.$echarts.init(document.getElementById("menuChart"));
let option = { let option = {
title: {
left: 'center'
},
tooltip: { tooltip: {
trigger: 'axis'
trigger: 'item',
}, },
color:['rgb(0, 153, 255)','#6699CC'],
calculable: true,
legend:{ legend:{
data: ['未开始', '进行中']
show:true,
bottom: 'bottom',
data:['打开','执行中','已完成','已关闭'],
}, },
grid: {
left: '1%',
right: '3%',
bottom: '5%',
containLabel: true
graphic: {
type: 'text',
left: 'center',
top: 'center',
style: {
// text: '',
text:
'需求数'+this.selProject.menuCnt,
textAlign: 'center',
fill: '#333',
width: 30,
height: 30,
fontSize: 14
}
}, },
toolbox: {
feature: {
saveAsImage: {}
series: [
{
type: 'pie',
center:['50%','40%'],
radius: ['40%','70%'],
data:[{name:'打开',value:this.selProject.menuUnstartCnt},{name:'执行中',value:this.selProject.menuExecCnt},{name:'已完成',value:this.selProject.menuFinishCnt},{name:'已关闭',value:this.selProject.menuCloseCnt}],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
} }
}, },
xAxis: {
type: 'category',
boundaryGap: false,
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
label: {
show: true,
formatter:'{b}: {c}  ({d}%)'
}, },
yAxis: {
type: 'value'
}
]
};
//
taskChart.setOption(option);
}, },
drawTestCasePie() {
let taskChart = this.$echarts.init(document.getElementById("testCasePieChart"));
let option = {
title: {
left: 'center'
},
tooltip: {
trigger: 'item',
},
calculable: true,
legend:{
show:true,
bottom: 'bottom',
data:['设计中','执行中','已完成'],
},
graphic: {
type: 'text',
left: 'center',
top: 'center',
style: {
// text: '',
text:
'用例数'+this.selProject.testCases,
textAlign: 'center',
fill: '#333',
width: 30,
height: 30,
fontSize: 14
}
},
series: [ series: [
{ {
name: '未开始',
type: 'line',
//stack: '',
data: [120, 132, 101, 134, 90, 230, 210],
areaStyle: {
normal:{
color:"rgb(153, 204, 255)" , //线
type: 'pie',
center:['50%','40%'],
radius: ['40%','70%'],
data:[{name:'设计中',value:this.selProject.designCases},{name:'执行中',value:this.selProject.execCases},{name:'已完成',value:this.selProject.finishCases}],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
} }
}, },
lineStyle:{
normal:{
color:'rgb(0, 153, 255)'
label: {
show: true,
formatter:'{b}: {c}  ({d}%)'
},
} }
]
};
//
taskChart.setOption(option);
}, },
drawTaskPie() {
let taskChart = this.$echarts.init(document.getElementById("taskChart"));
let option = {
title: {
left: 'center'
}, },
{
name: '进行中',
type: 'line',
//stack: '',
data: [220, 182, 191, 234, 290, 330, 310],
areaStyle: {
normal:{
color:"rgb(153, 204, 255)", //线
tooltip: {
trigger: 'item',
},
calculable: true,
legend:{
show:true,
bottom: 'bottom',
data:['未开始','执行中','已完工','已结算','已关闭'],
},
graphic: {
type: 'text',
left: 'center',
top: 'center',
style: {
// text: '',
text:
'任务数'+this.totalTask,
textAlign: 'center',
fill: '#333',
width: 30,
height: 30,
fontSize: 14
} }
}, },
lineStyle:{
normal:{
color:'#6699CC'
series: [
{
type: 'pie',
center:['50%','40%'],
radius: ['40%','70%'],
data:[{name:'未开始',value:this.selProject.taskUnStartCnt},{name:'执行中',value:this.selProject.taskExecCnt},{name:'已完工',value:this.selProject.taskFinishCnt},{name:'已结算',value:this.selProject.taskSetCnt},{name:'已关闭',value:this.selProject.taskCloseCnt}],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
} }
}, },
label: {
show: true,
formatter:'{b}: {c}  ({d}%)'
}, },
],
}
]
}; };
// //
@ -485,46 +624,45 @@ export default {
drawPieBug() { drawPieBug() {
let bugPieChart = this.$echarts.init(document.getElementById("bugPieChart")); let bugPieChart = this.$echarts.init(document.getElementById("bugPieChart"));
let option = { let option = {
title: {
left: 'center'
},
tooltip: { tooltip: {
trigger: 'item', trigger: 'item',
formatter: '{b} : {c} ({d}%)' formatter: '{b} : {c} ({d}%)'
}, },
legend: { legend: {
show:true,
bottom: 'bottom',
data:['已激活','已确认','已解决','已关闭']
},
graphic: {
type: 'text',
left: 'center',
top: 'center',
style: {
// text: '',
text:
'缺陷数'+this.selProject.bugCnt,
textAlign: 'center',
fill: '#333',
width: 30,
height: 30,
fontSize: 14
}
}, },
series: [ series: [
{ {
center:['55%','40%'],//
type: 'pie', type: 'pie',
radius: '50%',//
label:{ //
normal:{
center:['50%','40%'],
radius: ['40%','70%'],
label:{
show: true, show: true,
position:'outer', //:
textStyle : {
fontWeight : 100 ,
fontSize: document.body.clientWidth / 120, //
color: "#000000"
},
formatter:'{b}\n{c}({d}%)',//bname,c:value,d:
alignTo:'edge',
margin:10
}
formatter:'{b}: {c}  ({d}%)'
}, },
data: [ data: [
{value: this.selProject.closedBugs,
itemStyle: {
normal:{
color: '#5470C6'
}
},
name: '已关闭'},
{value: this.selProject.resolvedBugs,
itemStyle: {
normal:{
color: '#91CC75'
}
},
name: '已解决'},
{value: this.selProject.activeBugs, {value: this.selProject.activeBugs,
itemStyle: { itemStyle: {
normal:{ normal:{
@ -539,14 +677,21 @@ export default {
} }
}, },
name: '已确认'}, name: '已确认'},
],
emphasis: {
{value: this.selProject.resolvedBugs,
itemStyle: { itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
normal:{
color: '#91CC75'
} }
},
name: '已解决'},
{value: this.selProject.closedBugs,
itemStyle: {
normal:{
color: '#5470C6'
} }
},
name: '已关闭'},
],
} }
] ]
}; };
@ -632,11 +777,27 @@ export default {
bottom: 10, bottom: 10,
left: 'center', left: 'center',
}, },
graphic: {
type: 'text',
left: 'center',
top: 'center',
style: {
// text: '',
text:
'总工作量h:'+this.selProject.budgetWorkload,
textAlign: 'center',
fill: '#333',
width: 30,
height: 30,
fontSize: 14
}
},
series: [ series: [
{ {
center:['55%','40%'],//
type: 'pie', type: 'pie',
radius: '50%',//
center:['50%','40%'],
radius: ['40%','70%'],
label:{ // label:{ //
normal:{ normal:{
show:true, show:true,
@ -651,6 +812,7 @@ export default {
margin:10 margin:10
} }
}, },
data: [ data: [
{value: this.selProject.budgetIuserWorkload, {value: this.selProject.budgetIuserWorkload,
itemStyle: { itemStyle: {
@ -706,17 +868,27 @@ export default {
color:'#000000', color:'#000000',
} }
}, },
data: [this.selProject.productCnt, this.selProject.iterationCnt],
type: 'bar',
showBackground: true,
data: [
{
value: this.selProject.productCnt,
itemStyle: { itemStyle: {
normal:{ normal:{
color: '#87CEFA'
color: '#91CC75'
}
} }
}, },
backgroundStyle: {
color: '#FFFFFF'
{
value: this.selProject.iterationCnt,
itemStyle: {
normal:{
color: '#FAC858'
}
} }
},
],
type: 'bar',
}] }]
}; };
@ -734,7 +906,9 @@ export default {
this.dicts=res.data.data; this.dicts=res.data.data;
}) })
this.drawAllBar(); this.drawAllBar();
this.drawTaskByDate();
this.drawMenuPie();
this.drawTaskPie();
this.drawTestCasePie();
this.drawPieBug(); this.drawPieBug();
this.drawCostPie(); this.drawCostPie();
this.drawWorkload(); this.drawWorkload();
@ -767,10 +941,8 @@ export default {
.icon { .icon {
color: #fff; color: #fff;
height: 30px; height: 30px;
width: 30px;
border-radius: 15px; border-radius: 15px;
text-align: center; text-align: center;
line-height: 30px;
font-size: 20px; font-size: 20px;
display: inline-block; display: inline-block;
margin-right: 5px; margin-right: 5px;
@ -778,11 +950,9 @@ export default {
.icon2 { .icon2 {
color: #000000; color: #000000;
height: 30px;
width: 30px; width: 30px;
border-radius: 15px; border-radius: 15px;
text-align: center; text-align: center;
line-height: 30px;
font-size: 20px; font-size: 20px;
display: inline-block; display: inline-block;
margin-right: 5px; margin-right: 5px;
@ -857,9 +1027,3 @@ export default {
} }
</style> </style>
<style>
.app-container{
padding: 20px;
padding-bottom: 0;
}
</style>
Loading…
Cancel
Save