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.
 
 
 
 

47 lines
812 B

<template>
<section>
<report-index :xm-iteration="xmIteration" :xm-product="xmProduct" category="迭代级"></report-index>
</section>
</template>
<script>
import { mapGetters } from 'vuex';
import reportIndex from './reportIndex'
export default {
computed: {
...mapGetters([
'userInfo','roles','xmIteration'
]),
xmProduct:function(){
if(this.xmIteration && this.xmIteration.id){
return {id:this.xmIteration.productId,productName:this.xmIteration.productName}
}else{
return null;
}
}
},
watch:{
},
data() {
return {
}
},//end data
methods: {
},//end methods
components: {
reportIndex,
//在下面添加其它组件
},
activated(){
},
mounted() {
}
}
</script>
<style scoped>
</style>