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.
40 lines
582 B
40 lines
582 B
<template>
|
|
<section>
|
|
<report-index :xm-project="projectInfo" category="项目级"></report-index>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import { mapGetters } from 'vuex';
|
|
import reportIndex from './index'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapGetters([
|
|
'userInfo','roles','projectInfo'
|
|
]),
|
|
},
|
|
watch:{
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},//end data
|
|
methods: {
|
|
|
|
},//end methods
|
|
components: {
|
|
reportIndex,
|
|
//在下面添加其它组件
|
|
},
|
|
activated(){
|
|
},
|
|
mounted() {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|