|
@@ -1866,6 +1866,8 @@
|
|
|
<el-form>
|
|
|
<el-form-item :label="$t('HCFD.results.steps') " :label-width="formLabelWidth2">
|
|
|
<el-select size="mini" v-model="femStep" @change="femStepChange" placeholder="请选择">
|
|
|
+ <el-option label="0(静态数据)" value="0" selected >
|
|
|
+ </el-option>
|
|
|
<el-option
|
|
|
v-for="setep in femSteplist"
|
|
|
:key="setep"
|
|
@@ -2097,7 +2099,7 @@ export default {
|
|
|
scalarmax:'',
|
|
|
},
|
|
|
femSteplist: [],
|
|
|
- femStep:'',
|
|
|
+ femStep:'0',
|
|
|
vSalar: "",
|
|
|
velementCheckeds: ["Contour"],
|
|
|
colorobj:{
|
|
@@ -3090,12 +3092,13 @@ this.styX.left=e.clientX+'px';
|
|
|
// //选择step
|
|
|
femStepChange(val){
|
|
|
this.Stepe=val;
|
|
|
- if(this.Stepe==0){
|
|
|
- Message({
|
|
|
- type: "warning",
|
|
|
- message: "请选择setp有效值",
|
|
|
- });
|
|
|
- }
|
|
|
+ //console.log(this.Stepe);
|
|
|
+ // if(this.Stepe==0){
|
|
|
+ // Message({
|
|
|
+ // type: "warning",
|
|
|
+ // message: "请选择setp有效值",
|
|
|
+ // });
|
|
|
+ // }
|
|
|
this.animationobj.firststep= this.femSteplist[0];
|
|
|
this.animationobj.laststep= this.femSteplist[this.femSteplist.length -1];
|
|
|
this.animationobj.currentstep=this.femStep;
|