|
@@ -13,8 +13,8 @@
|
|
|
<img src="@/assets/img/start.png" class="content-aside-img" alt="Experiment Icon" />
|
|
|
</el-row>
|
|
|
<el-row justify="center" align="middle">
|
|
|
- <el-col :span="24" :push="6">
|
|
|
- <span>设计变量</span>
|
|
|
+ <el-col :span="24" :push="8">
|
|
|
+ <span style="font-size: 10px;">设计变量</span>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -80,6 +80,30 @@
|
|
|
</div>
|
|
|
<el-divider />
|
|
|
<div class="third-container">
|
|
|
+ <div class="content-container">
|
|
|
+ <div class="content-aside">
|
|
|
+ <el-row justify="center">
|
|
|
+ <img src="@/assets/img/start.png" class="content-aside-img" alt="Experiment Icon" />
|
|
|
+ </el-row>
|
|
|
+ <el-row justify="center" align="middle">
|
|
|
+ <el-col :span="24" :push="8">
|
|
|
+ <span style="font-size: 10px;">优化目标</span>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ <div class="content-form content-form-right">
|
|
|
+ <el-form class="custom-form" :label-width="Labelwidth" label-position="left">
|
|
|
+ <el-form-item label="约束参数">
|
|
|
+ <el-select v-model="qitanOPData2.constraintParameter" size="small">
|
|
|
+ <el-option label="失效应力" value="1"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="输入数值">
|
|
|
+ <el-input-number v-model="qitanOPData2.inputValue" size="small" controls-position="right"></el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -118,15 +142,15 @@ const qitanOPData2 = ref({
|
|
|
|
|
|
.first-container {
|
|
|
width: 100%;
|
|
|
- height: 40%;
|
|
|
+ height: 50%;
|
|
|
}
|
|
|
.second-container {
|
|
|
width: 100%;
|
|
|
- height: 30%;
|
|
|
+ height: 25%;
|
|
|
}
|
|
|
.third-container {
|
|
|
width: 100%;
|
|
|
- height: 30%;
|
|
|
+ height: 25%;
|
|
|
}
|
|
|
}
|
|
|
|