statis.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <div>
  3. <appHeader @goNewpage="onGoNewPage" :title="this.pagetitle"></appHeader>
  4. <div class="container">
  5. <div class="row">
  6. <statischart></statischart>
  7. </div>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. import appHeader from '../components/appHeader'
  13. import axios from 'axios';
  14. let qs = require('qs');
  15. import Global from '../Global.js'
  16. import statischart from '../components/statischart'
  17. export default {
  18. data() {
  19. return {
  20. pagetitle:this.$t('Statistical report forms'),
  21. lists: []
  22. }
  23. },
  24. mounted() {
  25. },
  26. methods: {
  27. onGoNewPage(path) {
  28. this.$router.push({path: '/' + path});
  29. },
  30. },
  31. components: {
  32. statischart,appHeader
  33. }
  34. }
  35. </script>
  36. <style scoped>
  37. .container {
  38. width: 100%;
  39. overflow: hidden;
  40. display: block;
  41. margin: 0 auto;
  42. }
  43. /deep/ #statischart {
  44. overflow: hidden;
  45. display: block;
  46. margin: 0 auto;
  47. }
  48. </style>