|
@@ -257,7 +257,7 @@ import {
|
|
|
} from '@/api/zdsz/enginee'
|
|
|
export default {
|
|
|
name:'EnginNodeInfo',
|
|
|
- props:['types','enginType','name','currentContain','updateOption','status'],
|
|
|
+ props:['types','enginType','enginSort','enginNode','name','currentContain','updateOption','status'],
|
|
|
dicts:[
|
|
|
'visit_type',
|
|
|
'self_closing_valve_type',
|
|
@@ -322,8 +322,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created(){
|
|
|
+ let data = {enginType:this.enginType}
|
|
|
+ debugger
|
|
|
+ if (this.enginSort !== undefined){
|
|
|
+ data['enginSort'] = this.enginSort
|
|
|
+ data['enginNode'] = this.enginNode
|
|
|
+ }
|
|
|
// 获取材质
|
|
|
- getEnginMaterialQualityList({enginType:this.enginType}).then(res => {
|
|
|
+ getEnginMaterialQualityList(data).then(res => {
|
|
|
console.log('材质',res)
|
|
|
this.materialQualityList = res.data
|
|
|
})
|