| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div id="up1">
- <div class="bg-color-black">
- <div class="d-flex pt-2 pl-2">
- <span>
- <icon name="chart-bar" class="text-icon"></icon>
- </span>
- <div class="d-flex">
- <span class="fs-xl text mx-2">当日工段投产良率</span>
- </div>
- </div>
- <div>
- <Up1Chart />
- </div>
- </div>
- </div>
- </template>
- <script>
- import Up1Chart from '@/components/smtechart/up/up1Chart'
- export default {
- components: {
- Up1Chart
- }
- }
- </script>
- <style lang="scss" scoped>
- $box-height: 475px;
- $box-width: 100%;
- #up1 {
- padding: 10px 10px;
- height: $box-height;
- width: $box-width;
- border-radius: 5px;
- .bg-color-black {
- height: $box-height - 20px;
- border-radius: 10px;
- }
- .chart-box {
- margin-top: 16px;
- width: 170px;
- height: 170px;
- .active-ring-name {
- padding-top: 10px;
- }
- }
- }
- </style>
|