index.vue 570 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div class="coontent">
  3. </div>
  4. </template>
  5. <script>
  6. import echarts from "echarts"
  7. import moment from 'moment'
  8. import { mapGetters } from 'vuex'
  9. import { numberFormat, getTimeResult } from "@/utils/util";
  10. export default {
  11. data() {
  12. return {
  13. };
  14. },
  15. mounted: function () {
  16. this.$nextTick(function () {
  17. });
  18. },
  19. computed: {
  20. ...mapGetters(['userInfo']),
  21. },
  22. created() {
  23. },
  24. methods: {
  25. },
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. </style>
  30. <style rel="stylesheet/scss" lang="scss" scoped>
  31. </style>