up1.vue 917 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div id="up1">
  3. <div class="bg-color-black">
  4. <div class="d-flex pt-2 pl-2">
  5. <span>
  6. <icon name="chart-bar" class="text-icon"></icon>
  7. </span>
  8. <div class="d-flex">
  9. <span class="fs-xl text mx-2">当日工段投产良率</span>
  10. </div>
  11. </div>
  12. <div>
  13. <Up1Chart />
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. import Up1Chart from '@/components/smtechart/up/up1Chart'
  20. export default {
  21. components: {
  22. Up1Chart
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. $box-height: 475px;
  28. $box-width: 100%;
  29. #up1 {
  30. padding: 10px 10px;
  31. height: $box-height;
  32. width: $box-width;
  33. border-radius: 5px;
  34. .bg-color-black {
  35. height: $box-height - 20px;
  36. border-radius: 10px;
  37. }
  38. .chart-box {
  39. margin-top: 16px;
  40. width: 170px;
  41. height: 170px;
  42. .active-ring-name {
  43. padding-top: 10px;
  44. }
  45. }
  46. }
  47. </style>