diff --git a/api/modules/growth.js b/api/modules/growth.js
index f23fa2f..6fd86cd 100644
--- a/api/modules/growth.js
+++ b/api/modules/growth.js
@@ -7,4 +7,8 @@ export const getAllPosition = () => ajax.get(`/manageApi/stu/grow/getPositionOfP
// 获取职级
export const getAllBandInfo = () => ajax.get(`/manageApi/admin/thirdApi/getAllBandInfo`)
//全岗位路径
-export const getFullJobPath = (params) => ajax.get(`/manageApi/stu/grow/getFullJobPath?positionIdList=${params.positionIdList}&bandCodeList=${params.bandCodeList}`);
\ No newline at end of file
+export const getFullJobPath = (params) => ajax.get(`/manageApi/stu/grow/getFullJobPath?positionIdList=${params.positionIdList}&bandCodeList=${params.bandCodeList}`);
+//外部考试
+export const queryExternalExam = (params) => ajax.get(`/manageApi/external/exam/queryExternalExam?externalId=${params.externalId}&type=14`);
+//外部考试点击调用
+export const submitExternalExam = (params) => ajax.postJson(`/manageApi/stu/externalExam/submitExternalExam`,params);
\ No newline at end of file
diff --git a/pages/learnPath/examScore.vue b/pages/learnPath/examScore.vue
new file mode 100644
index 0000000..c9130d0
--- /dev/null
+++ b/pages/learnPath/examScore.vue
@@ -0,0 +1,133 @@
+
+
+
+ 考试详情
+
+
+
+
+
+
+ 【考试】{{ datainfo.examinationName }}
+
+
+ 数据来源:
+
+ {{ datainfo.source ? datainfo.source : "-" }}
+
+
+
+
+
+
+ 考试说明
+
+ {{
+ datainfo.examinationExplain
+ ? datainfo.examinationExplain
+ : "暂无考试说明"
+ }}
+
+
+
+
+
+
+
+
+
diff --git a/pages/learnPath/learnPath.vue b/pages/learnPath/learnPath.vue
index 714b5bf..e89328c 100644
--- a/pages/learnPath/learnPath.vue
+++ b/pages/learnPath/learnPath.vue
@@ -72,7 +72,7 @@
{{currentItem.currentRatio || 0}}%
-
+
课程讲师: {{currentItem.teacherName?currentItem.teacherName.split(',').length > 3
? currentItem.teacherName.split(',').slice(0, 3).join(',') + '...'
: currentItem.teacherName:''}}
@@ -88,7 +88,7 @@