jeecgBootUniapp/src/api/bpm/index.ts

10 lines
212 B
Vue
Raw Normal View History

2025-06-09 08:04:21 +00:00
import { http } from '@/utils/http';
/*通过id查询数据*/
export function queryCarRentalByIdApi(id : string) {
return http({
url: '/CarRental/cxcCarRental/queryById',
method: 'GET',
data: { id }
})
}