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.

39 lines
570 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <section>
  3. <rpt-index :xm-project="projectInfo" category="项目级"></rpt-index>
  4. </section>
  5. </template>
  6. <script>
  7. import { mapGetters } from 'vuex';
  8. import rptIndex from './index'
  9. export default {
  10. computed: {
  11. ...mapGetters([
  12. 'userInfo','roles','projectInfo'
  13. ]),
  14. },
  15. watch:{
  16. },
  17. data() {
  18. return {
  19. }
  20. },//end data
  21. methods: {
  22. },//end methods
  23. components: {
  24. rptIndex,
  25. //在下面添加其它组件
  26. },
  27. activated(){
  28. },
  29. mounted() {
  30. }
  31. }
  32. </script>
  33. <style scoped>
  34. </style>