|
@@ -470,7 +470,7 @@
|
|
|
<el-input v-model="objmesh.surfParam.min_size" autocomplete="off"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="相邻网格边比率" :label-width="formLabelWidth5">
|
|
|
- <el-input v-model="form.name" autocomplete="off"></el-input>
|
|
|
+ <el-input v-model="objmesh.surfParam.gradation" autocomplete="off"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="全局几何大小" :label-width="formLabelWidth5">
|
|
|
<el-input v-model="objmesh.surfParam.global_physical_size" autocomplete="off"></el-input>
|
|
@@ -2528,6 +2528,12 @@ export default {
|
|
|
femnum:String,
|
|
|
logs:String,
|
|
|
pid:String,
|
|
|
+ objcheck: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -3586,7 +3592,7 @@ let b=(Number(this.colorobj.B)/255).toFixed(4);
|
|
|
this.activecleer();
|
|
|
console.log(this.activeName);
|
|
|
if(this.activeName=='one'){
|
|
|
- this.$parent.startimg("init",'geometryFileShow');
|
|
|
+ this.loaddataaction('geometryFileShow',JSON.stringify(this.objcheck));
|
|
|
}else if(this.activeName=='twos'){
|
|
|
this.$parent.startimg("init",'loaddata');
|
|
|
}
|
|
@@ -4156,8 +4162,29 @@ this.bStepok("animation",'','')
|
|
|
|
|
|
},
|
|
|
// 几何导入
|
|
|
+ // 文件上传成功调用几何接口
|
|
|
+ loaddataaction(action,paramJson) {
|
|
|
+ this.solverConfigid=sessionStorage.getItem('solverConfigid');
|
|
|
+ console.log(this.solverConfigid);
|
|
|
+ let that = this;
|
|
|
+ let params = {
|
|
|
+ transCode: "AFT001", // 服务器渲染实例接口创建推流
|
|
|
+ pid: this.project.projectId,
|
|
|
+ solverConfigId: this.solverConfigid,
|
|
|
+ action: action,
|
|
|
+ paramJson: paramJson,
|
|
|
+ };
|
|
|
+ request(params)
|
|
|
+ .then((res) => {})
|
|
|
+ .catch((err) => {
|
|
|
+ // Message({
|
|
|
+ // type: "info",
|
|
|
+ // message: "请上传文件",
|
|
|
+ // });
|
|
|
+ });
|
|
|
+ },
|
|
|
geometryup(){
|
|
|
- this.$parent.startimg("init",'geometryFileShow');
|
|
|
+ this.loaddataaction('geometryFileShow',JSON.stringify(this.objcheck));
|
|
|
},
|
|
|
// 最后一张
|
|
|
Endclick(){
|
|
@@ -4333,10 +4360,8 @@ line-height: 30px;
|
|
|
.el-dialog__wrapper{
|
|
|
top: 20vh;
|
|
|
}
|
|
|
-.selecr {
|
|
|
- .el-form-item__label{
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
+/deep/.selecr .el-form-item__label{
|
|
|
+ font-size: 12px !important;
|
|
|
}
|
|
|
.btnaniu{
|
|
|
text-align: right;
|