Browse Source

1111

master
guoxing 2 years ago
parent
commit
84d154be79
  1. 12
      src/views/mortgage/allData.vue

12
src/views/mortgage/allData.vue

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

Loading…
Cancel
Save