From e04ee4a408b2ad54b0b47397d340efea6ef2f34f Mon Sep 17 00:00:00 2001 From: Pengxiansen <2422914688@qq.com> Date: Thu, 13 Feb 2025 18:48:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 108974c..eba75ae 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,6 +1,7 @@ import { createStore } from "vuex"; import { PROJECT_PROCESS, ROUTER_PROCESS, PROFESSIONAL_STUDENT_DETAIL } from "@/api/api"; import { request } from "@/api/request"; +import { growthRequest } from "@/api/growthRequest"; import { TASK_TYPES } from "@/api/CONST"; export default createStore({ @@ -123,7 +124,7 @@ export default createStore({ }); }, getGrowthInfo(content, { routerId }) { - request(PROFESSIONAL_STUDENT_DETAIL(routerId)).then(res => { + growthRequest(PROFESSIONAL_STUDENT_DETAIL(routerId)).then(res => { content.commit("SET_GROWTH_INFO", res.data); }) },