|
@@ -111,7 +111,7 @@ export default {
|
111
|
111
|
mounted() {
|
112
|
112
|
this.getBarData()
|
113
|
113
|
this.getLineData()
|
114
|
|
- api.queryParkingArea_Tcrdskfb().then(res => {
|
|
114
|
+ api.queryParkingArea_Tcrdskfb({}).then(res => {
|
115
|
115
|
let data = res.data || []
|
116
|
116
|
let areaData = [];
|
117
|
117
|
data.map(item => { //扩大热力图效果
|
|
@@ -134,12 +134,12 @@ export default {
|
134
|
134
|
},
|
135
|
135
|
methods: {
|
136
|
136
|
getBarData() {
|
137
|
|
- api.queryParkingArea_qybhd().then(res => {
|
|
137
|
+ api.queryParkingArea_qybhd({}).then(res => {
|
138
|
138
|
this.bardata = res.data || []
|
139
|
139
|
})
|
140
|
140
|
},
|
141
|
141
|
getLineData() {
|
142
|
|
- api.queryParkingArea_bhdsdfx().then(res => {
|
|
142
|
+ api.queryParkingArea_bhdsdfx({}).then(res => {
|
143
|
143
|
this.linedata = res.data || []
|
144
|
144
|
})
|
145
|
145
|
},
|