|
@@ -11,9 +11,9 @@
|
|
<!-- //步骤条 -->
|
|
<!-- //步骤条 -->
|
|
<div class="nuae_wtu">
|
|
<div class="nuae_wtu">
|
|
<div class="naue_one">
|
|
<div class="naue_one">
|
|
- <p class="naue_name">项目名称:电子类企业</p>
|
|
|
|
- <p>返乡创业:是</p>
|
|
|
|
- <p>所属产业:电子产业</p>
|
|
|
|
|
|
+ <p class="naue_name">项目名称:{{oekjg.name == null ? '' : oekjg.name}}</p>
|
|
|
|
+ <p>返乡创业:{{oekjg.isBackbussiness == "Y"? '是' : '否'}}</p>
|
|
|
|
+ <p>所属产业:{{oekjg.industry == null ? '' : oekjg.industry}}</p>
|
|
</div>
|
|
</div>
|
|
<div class="naue_two">
|
|
<div class="naue_two">
|
|
<el-steps :active="naueactive" align-center finish-status="success">
|
|
<el-steps :active="naueactive" align-center finish-status="success">
|
|
@@ -88,6 +88,7 @@
|
|
import {
|
|
import {
|
|
listConfig,
|
|
listConfig,
|
|
listConfigther,
|
|
listConfigther,
|
|
|
|
+ listConfigtheroie,
|
|
getConfig,
|
|
getConfig,
|
|
delConfig,
|
|
delConfig,
|
|
addConfig,
|
|
addConfig,
|
|
@@ -184,6 +185,8 @@ export default {
|
|
{ required: true, message: "参数键值不能为空", trigger: "blur" },
|
|
{ required: true, message: "参数键值不能为空", trigger: "blur" },
|
|
],
|
|
],
|
|
},
|
|
},
|
|
|
|
+ bmProjectId:0,
|
|
|
|
+ oekjg:{}
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -202,7 +205,9 @@ export default {
|
|
}else if(this.tabIndex==4){
|
|
}else if(this.tabIndex==4){
|
|
this.currentContent = 'three'
|
|
this.currentContent = 'three'
|
|
}
|
|
}
|
|
|
|
+ this.bmProjectId = this.$route.query.setid
|
|
this.getList();
|
|
this.getList();
|
|
|
|
+ this.getListList(this.bmProjectId );
|
|
this.getDicts("sys_yes_no").then((response) => {
|
|
this.getDicts("sys_yes_no").then((response) => {
|
|
this.typeOptions = response.data;
|
|
this.typeOptions = response.data;
|
|
});
|
|
});
|
|
@@ -218,6 +223,16 @@ export default {
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ getListList(index) {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listConfigtheroie(index).then((response) => {
|
|
|
|
+ console.log(response);
|
|
|
|
+ this.oekjg = response.data
|
|
|
|
+ // this.configList = response.data;
|
|
|
|
+ // this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
// 参数系统内置字典翻译
|
|
// 参数系统内置字典翻译
|
|
typeFormat(row, column) {
|
|
typeFormat(row, column) {
|
|
return this.selectDictLabel(this.typeOptions, row.configType);
|
|
return this.selectDictLabel(this.typeOptions, row.configType);
|