普测计划

This commit is contained in:
2024-06-03 19:29:07 +08:00
parent 4322a76f25
commit 0e61d6a6db
5 changed files with 69 additions and 75 deletions

View 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'
})
}