10 lines
212 B
Vue
10 lines
212 B
Vue
![]() |
import { http } from '@/utils/http';
|
||
|
|
||
|
/*通过id查询数据*/
|
||
|
export function queryCarRentalByIdApi(id : string) {
|
||
|
return http({
|
||
|
url: '/CarRental/cxcCarRental/queryById',
|
||
|
method: 'GET',
|
||
|
data: { id }
|
||
|
})
|
||
|
}
|