12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="processChart">
- <div class="from">
- <div class="commons-title">基础配置</div>
- </div>
- <div class="content">
- <div class="commons-title">基础配置</div>
- <div class="chart-warp">
- </div>
- </div>
- </div>
- </template>
- <script lang="setup">
-
- </script>
- <style lang="scss" scoped>
- .processChart {
- padding: 20px;
- display: flex;
- justify-content: space-between;
- .from {
- width: 300px;
- }
- .content {
- width: calc(100% - 320px);
- }
- }
- </style>
|