|
|
@@ -184,13 +184,13 @@
|
|
|
:title="title"
|
|
|
:visible.sync="nuedialog"
|
|
|
:before-close="handleClose"
|
|
|
- width="800px"
|
|
|
+ width="1000px"
|
|
|
>
|
|
|
<el-form
|
|
|
:model="ruleForm"
|
|
|
:rules="rules"
|
|
|
ref="ruleForm"
|
|
|
- label-width="120px"
|
|
|
+ label-width="170px"
|
|
|
class="demo-ruleForm form-grid"
|
|
|
>
|
|
|
<div class="form-row">
|
|
|
@@ -226,7 +226,7 @@
|
|
|
<el-form-item label="叶片长度:" prop="vaneLong">
|
|
|
<el-input v-model="ruleForm.vaneLong"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="叶轮直径:" prop="rotorDiameter">
|
|
|
+ <el-form-item label="叶轮直径(风轮直径):" prop="rotorDiameter">
|
|
|
<el-input v-model="ruleForm.rotorDiameter"></el-input>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
@@ -311,7 +311,7 @@
|
|
|
<span>{{ particularsdata.vaneLong }}(米)</span>
|
|
|
</div>
|
|
|
<div class="condition">
|
|
|
- <p>叶轮直径:</p>
|
|
|
+ <p>叶轮直径(风轮直径):</p>
|
|
|
<span>{{ particularsdata.rotorDiameter }}(米)</span>
|
|
|
</div>
|
|
|
<div class="condition">
|
|
|
@@ -442,7 +442,11 @@ export default {
|
|
|
{ validator: this.validateNumber, trigger: ["blur", "change"] },
|
|
|
],
|
|
|
rotorDiameter: [
|
|
|
- { required: true, message: "请输入叶轮直径", trigger: "blur" },
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请输入叶轮直径(风轮直径)",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
{ validator: this.validateNumber, trigger: ["blur", "change"] },
|
|
|
],
|
|
|
rotationalSpeedRatio: [
|
|
|
@@ -809,7 +813,7 @@ export default {
|
|
|
display: flex;
|
|
|
|
|
|
p {
|
|
|
- width: 100px;
|
|
|
+ width: 150px;
|
|
|
text-align: right;
|
|
|
line-height: 40px;
|
|
|
margin-right: 10px;
|