mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-28 11:08:12 +08:00
update 调整格式
This commit is contained in:
@@ -296,8 +296,8 @@ export default {
|
||||
form: {
|
||||
prefix: '',
|
||||
},
|
||||
parkingInfo:{},
|
||||
parkingInfoList:[],
|
||||
parkingInfo: {},
|
||||
parkingInfoList: [],
|
||||
queryGroundLockQrCode: '',
|
||||
dialogTitle: '',
|
||||
qrcodePrefix: '',
|
||||
@@ -396,7 +396,7 @@ export default {
|
||||
|
||||
// 获取停车平台列表
|
||||
getParkingList() {
|
||||
getParkingInfoList().then((response) =>{
|
||||
getParkingInfoList().then((response) => {
|
||||
console.info("response", response)
|
||||
this.parkingInfoList = response.obj;
|
||||
})
|
||||
@@ -405,7 +405,7 @@ export default {
|
||||
getParkingInfo(parkingId) {
|
||||
console.log("parkingId", parkingId)
|
||||
this.parkingInfoList.forEach(item => {
|
||||
if (parkingId === item.id){
|
||||
if (parkingId === item.id) {
|
||||
console.log("item", item)
|
||||
this.parkingInfo = item;
|
||||
// console.log("this.parkingInfo", this.parkingInfo)
|
||||
@@ -464,7 +464,7 @@ export default {
|
||||
stationId: this.stationId,
|
||||
parkingId: parkingId,
|
||||
}
|
||||
bindParkingPlatform(params).then(response =>{
|
||||
bindParkingPlatform(params).then(response => {
|
||||
console.log("绑定站点与停车平台配置 response", response)
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user