Browse Source

优化

master
陈裕财 3 years ago
parent
commit
9a2aabca05
  1. 2
      src/router/routes_xm.js
  2. 40
      src/views/xm/rpt/reportIndexForProject.vue

2
src/router/routes_xm.js

@ -218,7 +218,7 @@ export default {
},
{
path: 'report',
component: _import('xm/rpt/reportIndex'),
component: _import('xm/rpt/reportIndexForProject'),
name: 'projectReport',
iconCls: 'fa el-icon-menu',
meta: {

40
src/views/xm/rpt/reportIndexForProject.vue

@ -0,0 +1,40 @@
<template>
<section>
<report-index :xm-project="projectInfo"></report-index>
</section>
</template>
<script>
import { mapGetters } from 'vuex';
import reportIndex from './reportIndex'
export default {
computed: {
...mapGetters([
'userInfo','roles','projectInfo'
]),
},
watch:{
},
data() {
return {
}
},//end data
methods: {
},//end methods
components: {
reportIndex,
//
},
activated(){
},
mounted() {
}
}
</script>
<style scoped>
</style>
Loading…
Cancel
Save