优化停车车辆查询

This commit is contained in:
Your Name 2023-09-25 23:12:59 +08:00
parent f51cf0d641
commit f5c14db594

View File

@ -86,13 +86,14 @@
let _that =this; let _that =this;
queryOwnerCars(this,{ queryOwnerCars(this,{
page:1, page:1,
row:50, row:15,
communityId:this.getCommunityId(), communityId:this.getCommunityId(),
carNumLike:this.carNumLike, carNumLike:this.carNumLike,
num:this.num, num:this.num,
ownerName:'', ownerName:this.ownerName,
link:this.link, link:this.link,
memberCarNumLike:this.memberCarNumLike, memberCarNumLike:this.memberCarNumLike,
carTypeCds:"1002,1001"
}).then(_data=>{ }).then(_data=>{
_that.cars = _data.data; _that.cars = _data.data;
}) })