|
|
@ -492,14 +492,14 @@ |
|
|
|
}, |
|
|
|
loadList() { |
|
|
|
|
|
|
|
var params = { |
|
|
|
var info = { |
|
|
|
orderDate: this.times, |
|
|
|
projectSid: this.params.projectSid |
|
|
|
} |
|
|
|
|
|
|
|
console.log('params:', params) |
|
|
|
console.log('info:', info) |
|
|
|
|
|
|
|
req.getProjectDaily(params).then(res => { |
|
|
|
req.getProjectDaily(info).then(res => { |
|
|
|
console.log('getProjectDaily:', res) |
|
|
|
if (res.data) { |
|
|
|
this.info = res.data |
|
|
@ -568,15 +568,15 @@ |
|
|
|
}) |
|
|
|
}, |
|
|
|
getReportInventory() { |
|
|
|
var params = { |
|
|
|
var info = { |
|
|
|
startDate: this.times, |
|
|
|
intervalTime: this.dayValue, |
|
|
|
projectSid: this.params.projectSid |
|
|
|
} |
|
|
|
|
|
|
|
console.log('params:', params) |
|
|
|
console.log('info:', info) |
|
|
|
|
|
|
|
req.getReportInventory(params).then(res => { |
|
|
|
req.getReportInventory(info).then(res => { |
|
|
|
console.log('getReportInventory:', res) |
|
|
|
|
|
|
|
this.chartData2 = { |
|
|
|