12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- const basePart = '/simulation/resource/server';
- const getVehicleList = basePart + '/vehicle/getVehicleList';
- const getVehicleInfo = basePart + '/vehicle/getVehicleInfo';
- const saveVehicle = basePart + '/vehicle/saveVehicle';
- const shareVehicle = basePart + '/vehicle/shareVehicle';
- const delVehicleById = basePart + '/vehicle/delVehicleById';
- const getCameraList = basePart + '/camera/getCameraList';
- const getCameraInfo = basePart + '/camera/getCameraInfo';
- const saveCamera = basePart + '/camera/saveCamera';
- const shareCamera = basePart + '/camera/shareCamera';
- const delCameraById = basePart + '/camera/delCameraById';
- const getOgtList = basePart + '/ogt/getOgtList';
- const getOgtInfo = basePart + '/ogt/getOgtInfo';
- const saveOgt = basePart + '/ogt/saveOgt';
- const shareOgt = basePart + '/ogt/shareOgt';
- const delOgtById = basePart + '/ogt/delOgtById';
- const getLidarList = basePart + '/lidar/getLidarList';
- const getLidarInfo = basePart + '/lidar/getLidarInfo';
- const saveLidar = basePart + '/lidar/saveLidar';
- const shareLidar = basePart + '/lidar/shareLidar';
- const delLidarById = basePart + '/lidar/delLidarById';
- const getGpsList = basePart + '/gps/getGpsList';
- const getGpsInfo = basePart + '/gps/getGpsInfo';
- const saveGps = basePart + '/gps/saveGps';
- const shareGps = basePart + '/gps/shareGps';
- const delGpsById = basePart + '/gps/delGpsById';
- const getConfigPageList = basePart + '/config/getConfigPageList';
- const getConfigInfo = basePart + '/config/getConfigInfo';
- const saveConfig = basePart + '/config/saveConfig';
- const shareConfigByInfo = basePart + '/config/shareConfigByInfo';
- const shareConfigById = basePart + '/config/shareConfigById';
- const delConfigById = basePart + '/config/delConfigById';
- const getMyVehicleList = basePart + '/vehicle/getMyVehicleList';
- const getMyCameraList = basePart + '/camera/getMyCameraList';
- const getMyOgtList = basePart + '/ogt/getMyOgtList';
- const getMyLidarList = basePart + '/lidar/getMyLidarList';
- const getMyGpsList = basePart + '/gps/getMyGpsList';
- export default {
- getVehicleList,
- getVehicleInfo,
- saveVehicle,
- shareVehicle,
- delVehicleById,
- getCameraList,
- getCameraInfo,
- saveCamera,
- shareCamera,
- delCameraById,
- getOgtList,
- getOgtInfo,
- saveOgt,
- shareOgt,
- delOgtById,
- getLidarList,
- getLidarInfo,
- saveLidar,
- shareLidar,
- delLidarById,
- getGpsList,
- getGpsInfo,
- saveGps,
- shareGps,
- delGpsById,
- getConfigPageList,
- getConfigInfo,
- saveConfig,
- shareConfigByInfo,
- shareConfigById,
- delConfigById,
- getMyVehicleList,
- getMyCameraList,
- getMyOgtList,
- getMyLidarList,
- getMyGpsList
- }
|