|
@@ -126,7 +126,9 @@ export default {
|
|
|
purchaseForm
|
|
|
},
|
|
|
data() {
|
|
|
+ let query = this.$route.query
|
|
|
return {
|
|
|
+ goodsId: query.goodsId,
|
|
|
tableList: [],
|
|
|
detail: null,
|
|
|
editVisible: false,
|
|
@@ -172,6 +174,7 @@ export default {
|
|
|
getList() {
|
|
|
const form = {
|
|
|
...this.searchForm,
|
|
|
+ goodsId: this.goodsId,
|
|
|
enterStorageStartTime: (this.orderDate ? this.orderDate[0] : ''),
|
|
|
enterStorageEndTime: (this.orderDate ? this.orderDate[1] : ''),
|
|
|
}
|