普测计划
This commit is contained in:
17
src/api/supervision-boot/survey/plan.ts
Normal file
17
src/api/supervision-boot/survey/plan.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import createAxios from '@/utils/request'
|
||||
|
||||
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
|
||||
|
||||
const MAPPING_PATH = SUPERVISION_BOOT + '/surveyPlan'
|
||||
|
||||
|
||||
/**
|
||||
* 根据id获取普测计划的详细数据
|
||||
*/
|
||||
export const getPlanById = (id: string) => {
|
||||
return createAxios({
|
||||
url: MAPPING_PATH + '/getById?id=' + id,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user