|
|
|
@ -1108,7 +1108,8 @@ export default {
|
|
|
|
|
let formattedDate = formatter.format(date); |
|
|
|
|
return formattedDate.replace(/\//g, '-'); |
|
|
|
|
}, |
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
async onLoad(page, params = {}) { |
|
|
|
|
try { |
|
|
|
|
this.loading = true; |
|
|
|
|
if (this.stockupDate.length > 0) { |
|
|
|
|
let startDate = this.stockupDate[0]; |
|
|
|
@ -1126,8 +1127,15 @@ export default {
|
|
|
|
|
console.log(',.,.已签收', this.signedFor, '全部', this.sumTotal); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
|
const res = await getListOwn( |
|
|
|
|
page.currentPage, |
|
|
|
|
page.pageSize, |
|
|
|
|
Object.assign(params, this.query) |
|
|
|
|
); |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200 || !data) return; |
|
|
|
|
|
|
|
|
|
console.log('???????', data); |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
this.data = data.records; |
|
|
|
@ -1163,9 +1171,12 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
console.log(this.data); |
|
|
|
|
this.loading = false; |
|
|
|
|
this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
this.loading = false; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
activated() { |
|
|
|
|