|
@@ -79,11 +79,11 @@
|
|
|
...mapState(['hasLogin', 'userInfo']),
|
|
|
},
|
|
|
methods: {
|
|
|
- getList() {debugger
|
|
|
+ getList() {
|
|
|
this.$api.doRequest('get', '/collectionWarehousingRecord/getCollectionWarehousingRecord', {
|
|
|
id: this.id
|
|
|
}).then(res => {
|
|
|
- if (res.data.code == 200) {debugger
|
|
|
+ if (res.data.code == 200) {
|
|
|
this.getData = res.data.data
|
|
|
this.$api.doRequest('get', '/collectionWarehousingRecord/selectCollectionWarehousingRecordPage', {
|
|
|
searchType: 2,
|
|
@@ -92,7 +92,7 @@
|
|
|
currentPage: 1,
|
|
|
pageSize: 999,
|
|
|
}).then(res => {
|
|
|
- if (res.data.code == 200) {debugger
|
|
|
+ if (res.data.code == 200) {
|
|
|
this.recordList = res.data.data.records
|
|
|
}
|
|
|
})
|