index.vue 585 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="trend card">
  3. <div class="t-txt theme-color1">文物访问趋势-24h</div>
  4. <div id="wwqs"></div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. mounted () {
  10. this.$nextTick(() => {
  11. this.$chart.line2(
  12. 'wwqs',
  13. ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
  14. [820, 932, 901, 934, 1290, 1330, 1320]
  15. )
  16. })
  17. }
  18. }
  19. </script>
  20. <style scoped>
  21. .trend{
  22. position: relative;
  23. }
  24. .trend .t-txt{
  25. position: absolute;
  26. top: 1.5rem;
  27. left: 1.5rem;
  28. font-weight: bold;
  29. }
  30. #wwqs{
  31. width: 100%;
  32. height: 400px;
  33. }
  34. </style>