processChart.vue 554 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="processChart">
  3. <div class="from">
  4. <div class="commons-title">基础配置</div>
  5. </div>
  6. <div class="content">
  7. <div class="commons-title">基础配置</div>
  8. <div class="chart-warp">
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <script lang="setup">
  14. </script>
  15. <style lang="scss" scoped>
  16. .processChart {
  17. padding: 20px;
  18. display: flex;
  19. justify-content: space-between;
  20. .from {
  21. width: 300px;
  22. }
  23. .content {
  24. width: calc(100% - 320px);
  25. }
  26. }
  27. </style>