|
@@ -24,6 +24,7 @@
|
|
|
<el-select
|
|
|
v-model="queryParams.materialClassifyFour"
|
|
|
size="mini"
|
|
|
+ multiple
|
|
|
clearable
|
|
|
@focus="chooseTreeRefer('MATERIALCLASSIFY_PARAM', false, '选择品类')"
|
|
|
style="width: 200px"
|
|
@@ -242,8 +243,7 @@
|
|
|
show-summary
|
|
|
:summary-method="getSummaries"
|
|
|
highlight-current-row
|
|
|
- height="355"
|
|
|
- max-height="355"
|
|
|
+ max-height="620"
|
|
|
style="font-size: 12px;"
|
|
|
:cell-class-name="cellClassName"
|
|
|
@selection-change="handleSelectionChange"
|
|
@@ -481,7 +481,7 @@ export default {
|
|
|
rowStatus: ['1'],
|
|
|
buyer: '',
|
|
|
buyerName: '',
|
|
|
- materialClassifyFour: '',
|
|
|
+ materialClassifyFour: [],
|
|
|
manufacturer: '',
|
|
|
forecastClassification: '',
|
|
|
periodUnit: '',
|
|
@@ -588,7 +588,7 @@ export default {
|
|
|
rowStatus: ['1'],
|
|
|
buyer: '',
|
|
|
buyerName: '',
|
|
|
- materialClassifyFour: '',
|
|
|
+ materialClassifyFour: [],
|
|
|
manufacturer: '',
|
|
|
forecastClassification: '',
|
|
|
periodUnit: '',
|
|
@@ -860,8 +860,8 @@ export default {
|
|
|
this.$refs.tree.init(this.referCondition)
|
|
|
},
|
|
|
selectionsToInput2(selection) {
|
|
|
- this.classOptions.push(selection)
|
|
|
- this.queryParams.materialClassifyFour = selection.id
|
|
|
+ this.classOptions = selection
|
|
|
+ this.queryParams.materialClassifyFour = selection.map(item => {return item.id})
|
|
|
},
|
|
|
// 搜索区物料编码
|
|
|
chooseMaterial() {
|