12 changed files with 743 additions and 63 deletions
-
6src/views/xm/core/xmTestPlan/rpt/CompsCard.vue
-
4src/views/xm/core/xmTestPlan/rpt/CompsSet.vue
-
3src/views/xm/core/xmTestPlan/rpt/biz/questionAgeDist.vue
-
3src/views/xm/core/xmTestPlan/rpt/biz/questionAttDist.vue
-
274src/views/xm/core/xmTestPlan/rpt/biz/questionRetestDist.vue
-
8src/views/xm/core/xmTestPlan/rpt/biz/questionSort.vue
-
203src/views/xm/core/xmTestPlan/rpt/biz/testCaseToPlanCalc.vue
-
187src/views/xm/core/xmTestPlan/rpt/biz/testDayTimesCalc.vue
-
36src/views/xm/core/xmTestPlan/rpt/biz/testPlanCaseExecStatusDist.vue
-
71src/views/xm/core/xmTestPlan/rpt/biz/testPlanCaseUserDist.vue
-
5src/views/xm/rpt/product/questionRetestDist.vue
-
6src/views/xm/rpt/testPlan/testCaseToPlanCalc.vue
@ -0,0 +1,274 @@ |
|||
<template> |
|||
<section> |
|||
<el-row class="padding"> |
|||
<el-popover trigger="manual" v-model="conditionBtnVisible" style="float:right;" width="300"> |
|||
|
|||
<el-button slot="reference" icon="el-icon-more" @click="conditionBtnVisible=!conditionBtnVisible"></el-button> |
|||
<el-row> |
|||
<el-button type="danger" icon="el-icon-delete" @click="doDelete">删除</el-button> |
|||
<el-button style="float:right;" type="text" icon="el-icon-close" @click="conditionBtnVisible=false">关闭</el-button> |
|||
</el-row> |
|||
<el-form :model="filters"> |
|||
|
|||
<el-form-item label="缺陷状态" prop="bugStatus"> |
|||
<el-select v-model="filters.bugStatus" @change="onXmQuestionSomeFieldsChange('bugStatus',$event)" clearable> |
|||
<el-option v-for="i in this.dicts.bugStatus" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="缺陷类型" prop="bugType" > |
|||
<el-select v-model="filters.bugType" @change="onXmQuestionSomeFieldsChange('bugType',$event)" clearable> |
|||
<el-option v-for="i in this.dicts.bugType" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="缺陷原因" prop="bugReason"> |
|||
<el-select v-model="filters.bugReason" @change="onXmQuestionSomeFieldsChange('bugReason',$event)" clearable> |
|||
<el-option v-for="i in this.dicts.bugReason" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="严重程度" prop="bugSeverity" > |
|||
<el-select v-model="filters.bugSeverity" @change="onXmQuestionSomeFieldsChange('bugSeverity',$event)" clearable> |
|||
<el-option v-for="i in this.dicts.bugSeverity" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="优先级" prop="priority" > |
|||
<el-select v-model="filters.priority" @change="onXmQuestionSomeFieldsChange('priority',$event)" clearable> |
|||
<el-option v-for="i in dicts.priority" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="解决方案" prop="solution" > |
|||
<el-select v-model="filters.solution" @change="onXmQuestionSomeFieldsChange('solution',$event)" clearable> |
|||
<el-option v-for="i in dicts.bugSolution" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
|
|||
<el-form-item label="重现频率" prop="repRate" > |
|||
<el-select v-model="filters.repRate" @change="onXmQuestionSomeFieldsChange('repRate',$event)" clearable> |
|||
<el-option v-for="i in dicts.bugRepRate" :label="i.name" :key="i.id" :value="i.id"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
|
|||
<el-form-item> |
|||
<el-button type="primary" icon="el-icon-search" @click="searchXmQuestionRetestDist">查询</el-button> |
|||
</el-form-item> |
|||
</el-form> |
|||
</el-popover> |
|||
</el-row> |
|||
<el-row> |
|||
<div> |
|||
<div class="main" :id="id" |
|||
style="width:100%;height:600px;margin:0 auto;"></div> |
|||
<div class="progress"></div> |
|||
</div> |
|||
</el-row> |
|||
</section> |
|||
</template> |
|||
|
|||
<script> |
|||
import util from '@/common/js/util';//全局公共库 |
|||
import { initSimpleDicts } from '@/api/mdp/meta/item';//下拉框数据查询 |
|||
import { mapGetters } from 'vuex' |
|||
|
|||
import { getXmQuestionRetestDist } from '@/api/xm/core/xmQuestion'; |
|||
|
|||
export default { |
|||
|
|||
components: { |
|||
}, |
|||
props:['xmTestPlan','xmRptConfig','compCfg'], |
|||
computed: { |
|||
...mapGetters([ |
|||
'userInfo','roles' |
|||
]), |
|||
|
|||
xmQuestionRetestsCpd(){ |
|||
var def=[ |
|||
{name:"1次",value:0} , |
|||
{name:"2次",value:0} , |
|||
{name:"3次",value:0} , |
|||
{name:"4次",value:0} , |
|||
{name:"5次",value:0} , |
|||
{name:"5次以上",value:0} |
|||
] |
|||
if(this.xmQuestionRetests.length==0){ |
|||
return def |
|||
}else{ |
|||
var datas=[] |
|||
this.xmQuestionRetests.forEach(i=>{ |
|||
var data={} |
|||
if(i.retimes>5){ |
|||
data.name="5次以上" |
|||
}else{ |
|||
data.name=this.legendCpd[i.retimes] |
|||
} |
|||
data.value=i.bugsNum |
|||
datas.push(data) |
|||
}) |
|||
def.forEach(k=>{ |
|||
if(!datas.some(i=>k.name==i.name)){ |
|||
datas.push(k) |
|||
} |
|||
}) |
|||
return datas; |
|||
} |
|||
}, |
|||
legendCpd(){ |
|||
return ["1次","2次","3次","4次","5次","5次以上"] |
|||
}, |
|||
title(){ |
|||
return '缺陷回归分布' |
|||
}, |
|||
id(){ |
|||
return this.compCfg.id |
|||
} |
|||
|
|||
}, |
|||
watch: { |
|||
xmQuestionRetestDistsCpd(){ |
|||
this.drawCharts(); |
|||
} |
|||
}, |
|||
data() { |
|||
return { |
|||
filters:{ |
|||
planId:'', |
|||
productId:'', |
|||
projectId:'', |
|||
bugStatus:'', |
|||
bugType:'', |
|||
bugReason:'', |
|||
bugSeverity:'', |
|||
priority:'', |
|||
solution:'', |
|||
repRate:'', |
|||
|
|||
|
|||
}, |
|||
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, |
|||
xmQuestionRetestDists:[], |
|||
conditionBtnVisible:false, |
|||
|
|||
}//end return |
|||
},//end data |
|||
methods: { |
|||
drawCharts() { |
|||
this.myChart = this.$echarts.init(document.getElementById(this.id)); |
|||
this.myChart.setOption( |
|||
{ |
|||
title: { |
|||
text: this.title, |
|||
left: 'center' |
|||
}, |
|||
tooltip: { |
|||
trigger: 'item', |
|||
|
|||
}, |
|||
|
|||
toolbox: { |
|||
show: true, |
|||
right:"20px", |
|||
feature: { |
|||
dataView: { show: true, readOnly: false }, |
|||
saveAsImage: { show: true }, |
|||
} |
|||
}, |
|||
calculable: true, |
|||
|
|||
legend: { |
|||
top:'5%', |
|||
left: 'center', |
|||
data:this.legendCpd, |
|||
}, |
|||
series: [ |
|||
{ |
|||
type: 'pie', |
|||
radius: '50%', |
|||
data: this.xmQuestionRetestsCpd, |
|||
emphasis: { |
|||
itemStyle: { |
|||
shadowBlur: 10, |
|||
shadowOffsetX: 0, |
|||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
|||
} |
|||
}, |
|||
|
|||
label: { |
|||
show: true, |
|||
|
|||
}, |
|||
} |
|||
] |
|||
} |
|||
) |
|||
}, |
|||
onXmQuestionSomeFieldsChange(fieldName,$event){ |
|||
this.xmQuestionRetestDists=[] |
|||
}, |
|||
searchXmQuestionRetestDist(){ |
|||
var params={...this.filters} |
|||
if(this.xmTestPlan && this.xmTestPlan.id){ |
|||
params.planId=this.xmTestPlan.id |
|||
} |
|||
|
|||
getXmQuestionRetestDist(params).then(res=>{ |
|||
this.xmQuestionRetestDists=res.data.data |
|||
}) |
|||
|
|||
}, |
|||
onProductSelected(product){ |
|||
this.filters.product=product |
|||
}, |
|||
|
|||
onProductClear(){ |
|||
this.filters.product=null |
|||
|
|||
}, |
|||
|
|||
onIterationSelected(iteration){ |
|||
this.filters.iteration=iteration |
|||
}, |
|||
doDelete(){ |
|||
this.$emit("delete",this.compCfg) |
|||
}, |
|||
|
|||
onIterationClear(){ |
|||
this.filters.iteration=null |
|||
}, |
|||
initData(){ |
|||
|
|||
if(this.xmTestPlan){ |
|||
this.filters.productId=this.xmTestPlan.productId |
|||
this.filters.projectId=this.xmTestPlan.projectId |
|||
this.filters.planId=this.xmTestPlan.id |
|||
} |
|||
if(this.compCfg && this.compCfg.params){ |
|||
Object.assign(this.filters,this.compCfg.params) |
|||
} |
|||
}, |
|||
sizeAutoChange(){ |
|||
this.myChart.resize(); |
|||
} |
|||
},//end method |
|||
mounted() { |
|||
initSimpleDicts('all',['bugSeverity','bugSolution','bugStatus','bugType','priority','bugRepRate','bugReason'] ).then(res=>{ |
|||
this.dicts=res.data.data; |
|||
}) |
|||
this.initData(); |
|||
this.searchXmQuestionRetestDist(); |
|||
//this.charts(); |
|||
//this.drawCharts(); |
|||
|
|||
}//end mounted |
|||
} |
|||
|
|||
</script> |
|||
|
|||
<style scoped> |
|||
.image { |
|||
width: 100%; |
|||
display: block; |
|||
} |
|||
</style> |
|||
@ -0,0 +1,203 @@ |
|||
<template> |
|||
<section> |
|||
<el-row class="padding"> |
|||
<el-popover trigger="manual" v-model="conditionBtnVisible" style="float:right;" width="300"> |
|||
<el-button slot="reference" icon="el-icon-more" @click="conditionBtnVisible=!conditionBtnVisible"></el-button> |
|||
<el-row> |
|||
<el-button type="danger" icon="el-icon-delete" @click="doDelete">删除</el-button> |
|||
<el-button style="float:right;" type="text" icon="el-icon-close" @click="conditionBtnVisible=false">关闭</el-button> |
|||
</el-row> |
|||
<el-form :model="filters"> |
|||
<el-form-item> |
|||
<el-button type="primary" icon="el-icon-search" @click="searchXmTestCaseToPlanCalcList">查询</el-button> |
|||
</el-form-item> |
|||
</el-form> |
|||
</el-popover> |
|||
</el-row> |
|||
<el-row> |
|||
<div> |
|||
<div class="main" :id="id" |
|||
style="width:100%;height:600px;margin:0 auto;"></div> |
|||
<div class="progress"></div> |
|||
</div> |
|||
</el-row> |
|||
</section> |
|||
</template> |
|||
|
|||
<script> |
|||
import util from '@/common/js/util';//全局公共库 |
|||
import { initSimpleDicts } from '@/api/mdp/meta/item';//下拉框数据查询 |
|||
import { mapGetters } from 'vuex' |
|||
|
|||
import { getXmTestCaseToPlanCalcList } from '@/api/xm/core/xmTestPlanCase'; |
|||
|
|||
export default { |
|||
|
|||
components: { |
|||
}, |
|||
props:['xmTestPlan','xmRptConfig','compCfg'], |
|||
computed: { |
|||
...mapGetters([ |
|||
'userInfo','roles' |
|||
]), |
|||
xmTestCaseToPlanCalcListCpd(){ |
|||
if(!this.xmTestCaseToPlanCalcList || this.xmTestCaseToPlanCalcList.length==0){ |
|||
return [] |
|||
}else{ |
|||
var names=this.legendCpd; |
|||
var datas=[] |
|||
this.xmTestCaseToPlanCalcList.forEach(i=>{ |
|||
var nameIndex=0; |
|||
if(i.useTimes<=2){ |
|||
nameIndex=i.useTimes |
|||
}else if(i.useTimes>=3 && i.useTimes<=5){ |
|||
nameIndex=3 |
|||
}else if(i.useTimes>5 && i.useTimes<=10){ |
|||
nameIndex=4 |
|||
}else if(i.useTimes>10){ |
|||
nameIndex=5 |
|||
} |
|||
var data={name:names[nameIndex],value:i.caseNum} |
|||
datas.push(data) |
|||
}) |
|||
return datas; |
|||
} |
|||
}, |
|||
title(){ |
|||
return '执行结果数量分布' |
|||
}, |
|||
legendCpd(){ |
|||
return ['0次','1次','2次','3-5次','5-10次','10次以上'] |
|||
}, |
|||
id(){ |
|||
return this.compCfg.id |
|||
}, |
|||
|
|||
}, |
|||
watch: { |
|||
xmTestCaseToPlanCalcListCpd(){ |
|||
this.drawCharts(); |
|||
} |
|||
}, |
|||
data() { |
|||
return { |
|||
filters:{ |
|||
planId:'', |
|||
}, |
|||
|
|||
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, |
|||
xmTestCaseToPlanCalcList:[], |
|||
conditionBtnVisible:false, |
|||
|
|||
}//end return |
|||
},//end data |
|||
methods: { |
|||
formatDict(itemId,val){ |
|||
var dict=this.dicts[itemId] |
|||
if(dict){ |
|||
var item=dict.find(i=>i.id==val) |
|||
if(item){ |
|||
return item.name |
|||
} |
|||
} |
|||
return val; |
|||
}, |
|||
drawCharts() { |
|||
this.myChart = this.$echarts.init(document.getElementById(this.id)); |
|||
this.myChart.setOption( |
|||
{ |
|||
title: { |
|||
text: this.title, |
|||
left: 'center' |
|||
}, |
|||
tooltip: { |
|||
trigger: 'item', |
|||
|
|||
}, |
|||
|
|||
toolbox: { |
|||
show: true, |
|||
right:"20px", |
|||
feature: { |
|||
dataView: { show: true, readOnly: false }, |
|||
saveAsImage: { show: true }, |
|||
} |
|||
}, |
|||
calculable: true, |
|||
|
|||
legend: { |
|||
top:'5%', |
|||
left: 'center', |
|||
data:this.legendCpd, |
|||
}, |
|||
series: [ |
|||
{ |
|||
type: 'pie', |
|||
radius: '50%', |
|||
data: this.xmTestCaseToPlanCalcListCpd, |
|||
emphasis: { |
|||
itemStyle: { |
|||
shadowBlur: 10, |
|||
shadowOffsetX: 0, |
|||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
|||
} |
|||
}, |
|||
|
|||
label: { |
|||
show: true, |
|||
|
|||
}, |
|||
} |
|||
] |
|||
} |
|||
) |
|||
}, |
|||
onXmQuestionSomeFieldsChange(fieldName,$event){ |
|||
this.xmTestCaseToPlanCalcList=[] |
|||
}, |
|||
searchXmTestCaseToPlanCalcList(){ |
|||
var params={...this.filters} |
|||
getXmTestCaseToPlanCalcList(params).then(res=>{ |
|||
this.xmTestCaseToPlanCalcList=res.data.data |
|||
}) |
|||
|
|||
}, |
|||
initData(){ |
|||
if(this.xmTestPlan){ |
|||
this.filters.productId=this.xmTestPlan.productId |
|||
this.filters.projectId=this.xmTestPlan.projectId |
|||
this.filters.planId=this.xmTestPlan.id |
|||
} |
|||
|
|||
if(this.compCfg && this.compCfg.params){ |
|||
Object.assign(this.filters,this.compCfg.params) |
|||
} |
|||
}, |
|||
doDelete(){ |
|||
this.$emit("delete",this.compCfg) |
|||
}, |
|||
sizeAutoChange(){ |
|||
this.myChart.resize(); |
|||
} |
|||
},//end method |
|||
mounted() { |
|||
this.initData(); |
|||
this.searchXmTestCaseToPlanCalcList(); |
|||
//this.charts(); |
|||
//this.drawCharts(); |
|||
|
|||
}//end mounted |
|||
} |
|||
|
|||
</script> |
|||
|
|||
<style scoped> |
|||
.image { |
|||
width: 100%; |
|||
display: block; |
|||
} |
|||
</style> |
|||
@ -0,0 +1,187 @@ |
|||
<template> |
|||
<section> |
|||
<el-row class="padding"> |
|||
<el-popover trigger="manual" v-model="conditionBtnVisible" style="float:right;" width="300"> |
|||
<el-button slot="reference" icon="el-icon-more" @click="conditionBtnVisible=!conditionBtnVisible"></el-button> |
|||
<el-row> |
|||
<el-button type="danger" icon="el-icon-delete" @click="doDelete">删除</el-button> |
|||
<el-button style="float:right;" type="text" icon="el-icon-close" @click="conditionBtnVisible=false">关闭</el-button> |
|||
</el-row> |
|||
<el-form :model="filters"> |
|||
<el-form-item> |
|||
<el-button type="primary" icon="el-icon-search" @click="searchXmTestDayTimesList">查询</el-button> |
|||
</el-form-item> |
|||
</el-form> |
|||
</el-popover> |
|||
</el-row> |
|||
<el-row> |
|||
<div> |
|||
<div class="main" :id="id" |
|||
style="width:100%;height:600px;margin:0 auto;"></div> |
|||
<div class="progress"></div> |
|||
</div> |
|||
</el-row> |
|||
</section> |
|||
</template> |
|||
|
|||
<script> |
|||
import util from '@/common/js/util';//全局公共库 |
|||
import { mapGetters } from 'vuex' |
|||
|
|||
import { getXmTestDayTimesList } from '@/api/xm/core/xmTestPlanCase'; |
|||
|
|||
export default { |
|||
|
|||
components: { |
|||
}, |
|||
props:['xmTestPlan','xmRptConfig','compCfg'], |
|||
computed: { |
|||
...mapGetters([ |
|||
'userInfo','roles' |
|||
]), |
|||
datesCpd(){ |
|||
if(!this.xmTestDayTimesList || this.xmTestDayTimesList.length==0){ |
|||
return [] |
|||
}else{ |
|||
return this.xmTestDayTimesList.map(i=>i.execDate) |
|||
} |
|||
}, |
|||
testDayTimesCpd(){ |
|||
if(!this.xmTestDayTimesList || this.xmTestDayTimesList.length==0){ |
|||
return [] |
|||
}else{ |
|||
return this.xmTestDayTimesList.map(i=>i.hadExec) |
|||
} |
|||
}, |
|||
|
|||
title(){ |
|||
return '测试用例每日执行次数统计' |
|||
}, |
|||
id(){ |
|||
return this.compCfg.id |
|||
}, |
|||
|
|||
}, |
|||
watch: { |
|||
xmTestDayTimesListsCpd(){ |
|||
this.drawCharts(); |
|||
} |
|||
}, |
|||
data() { |
|||
return { |
|||
filters:{ |
|||
planId:'', |
|||
}, |
|||
|
|||
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, |
|||
xmTestDayTimesLists:[], |
|||
conditionBtnVisible:false, |
|||
|
|||
}//end return |
|||
},//end data |
|||
methods: { |
|||
formatDict(itemId,val){ |
|||
var dict=this.dicts[itemId] |
|||
if(dict){ |
|||
var item=dict.find(i=>i.id==val) |
|||
if(item){ |
|||
return item.name |
|||
} |
|||
} |
|||
return val; |
|||
}, |
|||
drawCharts() { |
|||
this.myChart = this.$echarts.init(document.getElementById(this.id)); |
|||
this.myChart.setOption( |
|||
{ |
|||
title: { |
|||
text: this.title, |
|||
left: 'center' |
|||
}, |
|||
|
|||
tooltip: { |
|||
trigger: 'axis', |
|||
}, |
|||
barMaxWidth: 100, |
|||
toolbox: { |
|||
show: true, |
|||
right:"20px", |
|||
feature: { |
|||
dataView: { show: true, readOnly: false }, |
|||
magicType: { show: true, type: ['line', 'bar'] }, |
|||
|
|||
saveAsImage: { show: true } |
|||
} |
|||
}, |
|||
|
|||
calculable: true, |
|||
xAxis: { |
|||
type: 'category', |
|||
data: this.datesCpd |
|||
}, |
|||
yAxis: { |
|||
type: 'value' |
|||
}, |
|||
series: [ |
|||
{ |
|||
name:'次数', |
|||
data: this.testDayTimesCpd, |
|||
type: 'line', |
|||
label:{ |
|||
show: true, |
|||
}, |
|||
smooth: true, |
|||
} |
|||
] |
|||
} |
|||
) |
|||
}, |
|||
onXmQuestionSomeFieldsChange(fieldName,$event){ |
|||
this.xmTestDayTimesLists=[] |
|||
}, |
|||
searchXmTestDayTimesList(){ |
|||
var params={...this.filters} |
|||
getXmTestDayTimesList(params).then(res=>{ |
|||
this.xmTestDayTimesLists=res.data.data |
|||
}) |
|||
|
|||
}, |
|||
initData(){ |
|||
if(this.xmTestPlan){ |
|||
this.filters.productId=this.xmTestPlan.productId |
|||
this.filters.projectId=this.xmTestPlan.projectId |
|||
this.filters.planId=this.xmTestPlan.id |
|||
} |
|||
|
|||
if(this.compCfg && this.compCfg.params){ |
|||
Object.assign(this.filters,this.compCfg.params) |
|||
} |
|||
}, |
|||
doDelete(){ |
|||
this.$emit("delete",this.compCfg) |
|||
}, |
|||
sizeAutoChange(){ |
|||
this.myChart.resize(); |
|||
} |
|||
},//end method |
|||
mounted() { |
|||
this.initData(); |
|||
this.searchXmTestDayTimesList(); |
|||
//this.charts(); |
|||
//this.drawCharts(); |
|||
|
|||
}//end mounted |
|||
} |
|||
|
|||
</script> |
|||
|
|||
<style scoped> |
|||
.image { |
|||
width: 100%; |
|||
display: block; |
|||
} |
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue