|
@@ -16,13 +16,17 @@
|
|
<op-run :type="type" @saveAllData="projectinfochange"/>
|
|
<op-run :type="type" @saveAllData="projectinfochange"/>
|
|
</div>
|
|
</div>
|
|
</el-aside>
|
|
</el-aside>
|
|
- <el-main></el-main>
|
|
|
|
|
|
+ <el-main class="mid">
|
|
|
|
+ <div class="mid-1">
|
|
|
|
+ <analyze-work @changetype="handleTypeChange"/>
|
|
|
|
+ </div>
|
|
|
|
+ </el-main>
|
|
<el-aside class="rightaside">
|
|
<el-aside class="rightaside">
|
|
<div class="right-1">
|
|
<div class="right-1">
|
|
<op-problem ref="opRef" :type="type" :opDatajson="fourData" :runtype="type"/>
|
|
<op-problem ref="opRef" :type="type" :opDatajson="fourData" :runtype="type"/>
|
|
</div>
|
|
</div>
|
|
<div class="right-2">
|
|
<div class="right-2">
|
|
- <analyze-work @changetype="handleTypeChange"/>
|
|
|
|
|
|
+ <iterative-curve />
|
|
</div>
|
|
</div>
|
|
</el-aside>
|
|
</el-aside>
|
|
</el-container>
|
|
</el-container>
|
|
@@ -45,6 +49,7 @@ import opAlgorithm from './leftaside/opAlgorithm.vue';
|
|
import opRun from './leftaside/opRun.vue';
|
|
import opRun from './leftaside/opRun.vue';
|
|
import analyzeWork from './rightaside/analyzeWork.vue';
|
|
import analyzeWork from './rightaside/analyzeWork.vue';
|
|
import opProblem from './rightaside/opProblem.vue';
|
|
import opProblem from './rightaside/opProblem.vue';
|
|
|
|
+import IterativeCurve from "./rightaside/IterativeCurve.vue";
|
|
|
|
|
|
import { useProjectStore } from '@/store/project'
|
|
import { useProjectStore } from '@/store/project'
|
|
import { useValOptionsStore } from '@/store/valoptions'
|
|
import { useValOptionsStore } from '@/store/valoptions'
|
|
@@ -298,6 +303,19 @@ onUnmounted(() => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.mid {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ justify-content: end;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 0;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+
|
|
|
|
+ .mid-1 {
|
|
|
|
+ height: 20%;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
.footer {
|
|
.footer {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 20%;
|
|
height: 20%;
|