|
|
@@ -0,0 +1,19 @@
|
|
|
+import request from '@/utils/request'
|
|
|
+
|
|
|
+// 指导师-方案审核 (PlanReviewController: /api/guide/plans/*)
|
|
|
+
|
|
|
+export function listFamilyPlans(data) {
|
|
|
+ return request({ url: '/api/guide/plans/family-list', method: 'post', data })
|
|
|
+}
|
|
|
+
|
|
|
+export function reviewPlan(data) {
|
|
|
+ return request({ url: '/api/guide/plans/review', method: 'post', data })
|
|
|
+}
|
|
|
+
|
|
|
+export function activatePlan(data) {
|
|
|
+ return request({ url: '/api/guide/plans/activate', method: 'post', data })
|
|
|
+}
|
|
|
+
|
|
|
+export function getGuidePlanDetail(data) {
|
|
|
+ return request({ url: '/api/guide/plans/detail', method: 'post', data })
|
|
|
+}
|