|
@@ -190,12 +190,16 @@ export default {
|
|
|
selected.forEach(k => {
|
|
|
k.diffQty = Number(k.qty) - Number(k.refundQty)
|
|
|
})
|
|
|
+ let obj = {
|
|
|
+ id:JSON.stringify(this.dataList[0].id)
|
|
|
+ }
|
|
|
if (!this.detailsId) {
|
|
|
this.details = this.dataList[0]
|
|
|
- this.details.customerOrderNo = JSON.stringify(JSON.parse(JSON.stringify(this.dataList[0].id)) )
|
|
|
+ this.details.customerOrderNo = obj.id
|
|
|
}
|
|
|
this.detailsId = this.detailsId
|
|
|
- this.returnId = JSON.stringify(JSON.parse(JSON.stringify(this.dataList[0].id)) )
|
|
|
+
|
|
|
+ this.returnId = obj.id
|
|
|
this.itemId = this.dataList[0].itemId
|
|
|
this.dialogVisible = false
|
|
|
this.$refs.dia.$refs.pageRef.$refs.zjpage.$refs.tableEl.$refs.tableView.clearSelection()
|