From 63403342bad555f76aa7f40ee2dfe2bf2fdb1369 Mon Sep 17 00:00:00 2001 From: xjs Date: Wed, 11 Jun 2025 14:12:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BA=BF=E5=B7=AE=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages-sub/home/wishesList/index.vue | 1 + src/pages-sub/home/wishesList/wishesList.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages-sub/home/wishesList/index.vue b/src/pages-sub/home/wishesList/index.vue index 76977ee..a2ed927 100644 --- a/src/pages-sub/home/wishesList/index.vue +++ b/src/pages-sub/home/wishesList/index.vue @@ -144,6 +144,7 @@ v-model:show="collegeShow" :college="showCollegeItem" :major-count="majorCount" + :score="score" /> diff --git a/src/pages-sub/home/wishesList/wishesList.vue b/src/pages-sub/home/wishesList/wishesList.vue index 8b72148..dbfdbc5 100644 --- a/src/pages-sub/home/wishesList/wishesList.vue +++ b/src/pages-sub/home/wishesList/wishesList.vue @@ -121,7 +121,7 @@ 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}×tamp=${new Date().getTime()}` + 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}&requireSubject=${userStore.userInfo.estimatedAchievement.requireSubject.map((item) => item.name)}×tamp=${new Date().getTime()}` } return '' })