diff --git a/src/views/basic/destiny/destinySelectProduct.vue b/src/views/basic/destiny/destinySelectProduct.vue index 1bc07095..053fcf88 100644 --- a/src/views/basic/destiny/destinySelectProduct.vue +++ b/src/views/basic/destiny/destinySelectProduct.vue @@ -4,7 +4,7 @@ - + @@ -12,25 +12,25 @@ - + - + - + - + @@ -38,24 +38,24 @@ - + - + - + - + @@ -64,7 +64,7 @@ - + @@ -84,7 +84,7 @@ + @selection-change="handleSelectionChange" ref="multipleTable"> @@ -98,11 +98,11 @@ @@ -269,29 +269,33 @@ export default { handleSelectionChange(val) { this.lists = []; for (var i = 0; i < val.length; i++) { - this.lists.push(val[i].id) + let data = { + udiRlIdFk: val[i].id, + unitFk: val[i].unitFk + } + this.lists.push(data) } }, getList() { this.loading = true; this.listQuery.id = this.editQuery.id filterDestinyProduct(this.listQuery) - .then((response) => { - this.loading = false; - if (response.code === 20000) { - this.dataList = response.data.list || []; - this.pageTotal = response.data.total || 0; - } else { - this.$message.error(response.message); + .then((response) => { + this.loading = false; + if (response.code === 20000) { + this.dataList = response.data.list || []; + this.pageTotal = response.data.total || 0; + } else { + this.$message.error(response.message); + this.dataList = []; + this.pageTotal = 0; + } + }) + .catch(() => { + this.loading = false; this.dataList = []; this.pageTotal = 0; - } - }) - .catch(() => { - this.loading = false; - this.dataList = []; - this.pageTotal = 0; - }); + }); }, confirmSelect() { if (this.lists == null) { @@ -302,12 +306,12 @@ export default { }, combine() { this.loading = true; - addModeldestinyProduct({pId:this.editQuery.id,list:this.lists}).then((response) => { + addModeldestinyProduct({pId: this.editQuery.id, list: this.lists}).then((response) => { this.loading = false; if (response.code === 20000) { this.closeDialog(response.data); } else { - this.$message.error(response.message); + this.$message.error(response.message); } }).catch(() => { this.loading = false;