|
@@ -170,7 +170,7 @@
|
|
|
filter-by-label
|
|
|
transfer
|
|
|
clearable
|
|
|
- v-model="info.wool_size"
|
|
|
+ v-model="info.wool_size1"
|
|
|
size="small"
|
|
|
style="width: 120px"
|
|
|
>
|
|
@@ -401,7 +401,7 @@
|
|
|
filter-by-label
|
|
|
clearable
|
|
|
transfer
|
|
|
- v-model="info.wool_size"
|
|
|
+ v-model="info.wool_size2"
|
|
|
size="small"
|
|
|
style="width: 120px"
|
|
|
>
|
|
@@ -742,7 +742,8 @@ export default {
|
|
|
number: "",
|
|
|
part_name: "",
|
|
|
region: "",
|
|
|
- wool_size: "",
|
|
|
+ wool_size1: "",
|
|
|
+ wool_size2:'',
|
|
|
image_number: [],
|
|
|
product_name: [],
|
|
|
},
|
|
@@ -995,7 +996,7 @@ export default {
|
|
|
number: this.info.number,
|
|
|
part_name: this.info.part_name,
|
|
|
region: this.info.region,
|
|
|
- wool_size1: this.info.wool_size,
|
|
|
+ wool_size1: this.info.wool_size1,
|
|
|
},
|
|
|
})
|
|
|
.then((res) => {
|
|
@@ -1036,21 +1037,11 @@ export default {
|
|
|
number: this.info.number,
|
|
|
part_name: this.info.part_name,
|
|
|
region: this.info.region,
|
|
|
- wool_size2: this.info.wool_size,
|
|
|
+ wool_size2: this.info.wool_size2,
|
|
|
},
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- this.unmatchedObj.part_list = res.data.part_list;
|
|
|
- this.unmatchedObj.part_list.forEach(v=>{
|
|
|
- v.isHidden=true
|
|
|
- })
|
|
|
this.unmatchedRoomList.house_list = res.data.house_list;
|
|
|
- this.unmatchedRoomList.house_list.forEach(v=>{
|
|
|
- this.unmatchedObj.part_list[0].key.list.forEach(item=>{
|
|
|
- v[item.key]=item.value
|
|
|
- })
|
|
|
- })
|
|
|
- console.log(this.unmatchedRoomList.house_list)
|
|
|
this.unmatchedRoomTableColumnsUsed = this.unmatchedRoomTableColumns.concat(
|
|
|
res.data.head_word.map((v) => {
|
|
|
return { title: v, align: "center", key: v, minWidth: 60 };
|