diff --git a/src/aiService-sub/index/index.vue b/src/aiService-sub/index/index.vue index c6c3332..1855113 100644 --- a/src/aiService-sub/index/index.vue +++ b/src/aiService-sub/index/index.vue @@ -7,15 +7,15 @@ } + + diff --git a/src/pages-sub/evaluation/assessmentPage.vue b/src/pages-sub/evaluation/assessmentPage.vue index c7d7f1b..49fb073 100644 --- a/src/pages-sub/evaluation/assessmentPage.vue +++ b/src/pages-sub/evaluation/assessmentPage.vue @@ -157,6 +157,7 @@ const questionType = ref(-1) const questionName = ref('') const useTime = ref('') const quesApplication = ref('') +const isLoading = ref(false) onLoad((options) => { pageName.value = options.name @@ -202,6 +203,11 @@ const handleNextQuestion = () => { } const handleSubmit = () => { + if (isLoading.value) { + return + } + + isLoading.value = true let params = { customId: userStore.userInfo.estimatedAchievement.wxId, scaleId: pageId.value, @@ -213,6 +219,7 @@ const handleSubmit = () => { }) params.inputs = _inputs saveBusScaleAnswer(params).then((res) => { + isLoading.value = false if (res.code === 200) { uni.navigateBack() } else { diff --git a/src/pages-sub/home/wishesList/wishesList.vue b/src/pages-sub/home/wishesList/wishesList.vue index f48c934..7cdcfa1 100644 --- a/src/pages-sub/home/wishesList/wishesList.vue +++ b/src/pages-sub/home/wishesList/wishesList.vue @@ -118,6 +118,7 @@ let editType = '' let vTbId = ref(0) let webUrl = computed(() => { if (vTbId.value !== 0) { + //sort.ycymedu.com return `https://sort.ycymedu.com/sort-college?id=${vTbId.value}&token=${userStore.userInfo.token}&score=${userStore.userInfo.estimatedAchievement.expectedScore}&batchName=${userStore.userInfo.batchName}&subjectGroup=${userStore.userInfo.estimatedAchievement.subjectGroup}&location=${userStore.userInfo.estimatedAchievement.provinceCode}` } return '' diff --git a/src/pages-sub/ucenter/evaluate/evaluateList.vue b/src/pages-sub/ucenter/evaluate/evaluateList.vue index 6119c36..2ff1bbc 100644 --- a/src/pages-sub/ucenter/evaluate/evaluateList.vue +++ b/src/pages-sub/ucenter/evaluate/evaluateList.vue @@ -69,9 +69,11 @@ const toDetail = (item: any) => { }) return } else if (item.type === 4) { - url = `/pages-evaluation-sub/evaluate/studyReport/LearnStudyReport?id=${item.reportsId}&type=${item.type}` + url = `/pages-evaluation-sub/evaluate/studyReport/learnStudyReport?id=${item.reportsId}&type=${item.type}` } else if (item.type === 5) { - url = `/pages-evaluation-sub/evaluate/studyReport/LearnSkillReport?id=${item.reportsId}&type=${item.type}` + url = `/pages-evaluation-sub/evaluate/studyReport/learnSkillReport?id=${item.reportsId}&type=${item.type}` + } else if (item.type === 3) { + url = `/pages-evaluation-sub/evaluate/studyReport/anxietyReport?id=${item.reportsId}&type=${item.type}` } else { uni.showToast({ title: '开发中....', diff --git a/src/pages.json b/src/pages.json index e64fe79..bcaa9da 100644 --- a/src/pages.json +++ b/src/pages.json @@ -393,14 +393,21 @@ } }, { - "path": "evaluate/studyReport/LearnSkillReport", + "path": "evaluate/studyReport/anxietyReport", "type": "page", "style": { "navigationStyle": "custom" } }, { - "path": "evaluate/studyReport/LearnStudyReport", + "path": "evaluate/studyReport/learnSkillReport", + "type": "page", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "evaluate/studyReport/learnStudyReport", "type": "page", "style": { "navigationStyle": "custom" diff --git a/src/pages/home/index/index.vue b/src/pages/home/index/index.vue index e6cd2e6..15b5ddd 100644 --- a/src/pages/home/index/index.vue +++ b/src/pages/home/index/index.vue @@ -1,3 +1,13 @@ + +{ + style: { + navigationStyle: 'custom', + enableShareAppMessage: true, + enableShareTimeline: true, + }, +} + +