1234567891011121314151617181920 |
- import ajax from '@/utils/request.js';
- export function saveChepai(data) {
- return ajax({
- url: 'car/create',
- method: 'POST',
- urlType: 'slikRoad',
- errorToast: '当前访问人数过多,请重试。',
- data,
- });
- }
- export function getChepai(data) {
- return ajax({
- noLoad: true,
- url: '/car/info',
- method: 'GET',
- urlType: 'slikRoad',
- errorToast: '当前访问人数过多,请重试。',
- data,
- });
- }
|