f80ea09a
wuxw
加入费用详情
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import request from '@/utils/request'
import { getCommunityId } from '@/api/community/communityApi'
export function queryOwnerCars(params) {
return new Promise((resolve, reject) => {
request({
url: '/owner.queryOwnerCars',
method: 'get',
params: {
...params,
communityId: getCommunityId()
}
}).then(response => {
const res = response.data
if (res.code == 0) {
resolve(res)
} else {
reject(new Error(res.msg || 'Failed to query owner cars'))
}
}).catch(error => {
reject(error)
})
})
}
|