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() {
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 = {

Loading…
Cancel
Save