东西湖大屏
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.

36 lines
603 B

3 years ago
  1. <template>
  2. <div class="accessToLib-container">
  3. <div class="accessToLib-item">
  4. <span>总进馆人数</span>
  5. <p>2,125,462</p>
  6. </div>
  7. <div class="accessToLib-item">
  8. <span>月进馆人数</span>
  9. <p>10,062</p>
  10. </div>
  11. <div class="accessToLib-item">
  12. <span>今日进馆人数</span>
  13. <p>2,462</p>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. name: 'AccessToLibrary',
  20. data() {
  21. return {
  22. }
  23. },
  24. created() {
  25. },
  26. mounted() {
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. @import "~@/assets/styles/index.scss";
  34. </style>