问题优化
This commit is contained in:
parent
e2ba3c82d7
commit
1280b147ee
|
|
@ -63,9 +63,9 @@
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
placeholder="请选择成套设备"
|
placeholder="请选择成套设备"
|
||||||
@change="onChangeWholeTypeName"
|
@change="onChangeWholeTypeName"
|
||||||
v-model="queryParams.wholeTypeName"
|
v-model="queryParams.wholeName"
|
||||||
>
|
>
|
||||||
<el-option v-for="item in holdingPoleSelList" :key="item.id" :label="item.wholeTypeName" :value="item.id" />
|
<el-option v-for="item in holdingPoleSelList" :key="item.id" :label="item.wholeName" :value="item.id" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item label="类型名称" prop="status">
|
<el-form-item label="类型名称" prop="status">
|
||||||
|
|
@ -185,7 +185,7 @@
|
||||||
</el-table>
|
</el-table>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="wholeTypeName" align="center" label="抱杆设备名称" />
|
<el-table-column prop="wholeName" align="center" label="抱杆设备名称" />
|
||||||
<el-table-column align="center" label="抱杆设备数量" width="260">
|
<el-table-column align="center" label="抱杆设备数量" width="260">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
|
|
@ -411,7 +411,7 @@ export default {
|
||||||
},
|
},
|
||||||
//领料详情集合
|
//领料详情集合
|
||||||
leaseApplyDetails: [],
|
leaseApplyDetails: [],
|
||||||
wholeTypeName: '',
|
wholeName: '',
|
||||||
},
|
},
|
||||||
typeListDev: [], // 规格型号
|
typeListDev: [], // 规格型号
|
||||||
selectParams: {},
|
selectParams: {},
|
||||||
|
|
@ -837,7 +837,7 @@ export default {
|
||||||
preNum: e.deviceNum,
|
preNum: e.deviceNum,
|
||||||
typeCn: e.typeName,
|
typeCn: e.typeName,
|
||||||
typeId: e.deviceTypeId,
|
typeId: e.deviceTypeId,
|
||||||
wholeTypeName: i.wholeTypeName,
|
wholeName: i.wholeName,
|
||||||
}
|
}
|
||||||
|
|
||||||
wholeTypeList.push(items)
|
wholeTypeList.push(items)
|
||||||
|
|
@ -1136,7 +1136,7 @@ export default {
|
||||||
const selLable = this.holdingPoleSelList.find((e) => e.id === val)
|
const selLable = this.holdingPoleSelList.find((e) => e.id === val)
|
||||||
const wholeTypeNameData = {
|
const wholeTypeNameData = {
|
||||||
id: val,
|
id: val,
|
||||||
wholeTypeName: selLable.wholeTypeName,
|
wholeName: selLable.wholeName,
|
||||||
wholeTypeNum: 1,
|
wholeTypeNum: 1,
|
||||||
childrenList: [],
|
childrenList: [],
|
||||||
}
|
}
|
||||||
|
|
@ -1153,7 +1153,7 @@ export default {
|
||||||
console.log(this.wholeTypeNameList, '处理后的数据---')
|
console.log(this.wholeTypeNameList, '处理后的数据---')
|
||||||
})
|
})
|
||||||
|
|
||||||
this.queryParams.wholeTypeName = ''
|
this.queryParams.wholeName = ''
|
||||||
},
|
},
|
||||||
|
|
||||||
/* 删除 */
|
/* 删除 */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue