Ver Fonte

mbit & holland completed

abpcoder há 1 mês atrás
pai
commit
18c0d7de68

+ 4 - 2
src/pagesOther/pages/test-center/mbti/components/results/recommend-major-group.vue

@@ -1,7 +1,9 @@
 <template>
-    <view class="flex flex-col recommend-major-group px-15 py-10 rounded-lg overflow-hidden">
+    <view class="flex flex-col recommend-major-group px-15 py-10 rounded-lg overflow-hidden relative">
+        <ie-image is-oss src="/testCenter/career/mbti-recommend-head-bg.png"
+                  custom-class="w-80 h-80 absolute -top-20 -right-20"/>
         <view class="flex items-center gap-10 py-10">
-            <uv-image src="/static/test-center/recommend-head.png" width="20" height="20"/>
+            <ie-image is-oss src="/testCenter/career/mbti-recommend-head-icon.png" custom-class="h-40 w-40"/>
             <text class="text-xs text-content">{{ group.category }}</text>
         </view>
         <view class="flex flex-col bg-white rounded gap-10 text-3xs text-content px-15 py-10">

+ 1 - 1
src/pagesOther/pages/voluntary/index/index.vue

@@ -54,7 +54,7 @@ const handleSelect = async () => {
         selectedMajorId: target.value?.majorId,
         useRedirect: true
     }
-    const picked = await transferTo(routes.universityPicker, {data: option})
+    const picked = await transferTo(routes.universityPicker, {data: option, crossTrigger: true})
     if (!picked) return
     await processSelected(picked as SelectedUniversityMajor)
 }

+ 1 - 1
src/pagesOther/pages/voluntary/list/list.vue

@@ -175,7 +175,7 @@ const handleAdd = async () => {
         fromVoluntary: true,
         useRedirect: true
     }
-    const picked = await transferTo(routes.universityPicker, {data: option})
+    const picked = await transferTo(routes.universityPicker, {data: option, crossTrigger: true})
     if (!picked) return
     setTimeout(async () => {
         await addVoluntary(picked)