hookehuyr

refactor(recall): 将本地图片资源替换为CDN链接

......@@ -105,8 +105,7 @@ import { useRouter } from 'vue-router'
import { useTitle } from '@vueuse/core'
import { showToast } from 'vant'
// Assets
import historyBg from '@/assets/images/recall/history_bg@2x.png'
const historyBg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/history_bg@2x.png'
const router = useRouter()
useTitle('活动历史')
......
......@@ -76,9 +76,8 @@ import { useRoute, useRouter } from 'vue-router'
import { useTitle } from '@vueuse/core'
import { showToast } from 'vant'
// Assets
import bgImg from '@/assets/images/recall/bg01@2x.png'
import starImg from '@/assets/images/recall/xing@2x.png'
const bgImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/bg01@2x.png'
const starImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/xing@2x.png'
// Route
const route = useRoute()
......
......@@ -71,9 +71,9 @@ import { useTitle } from '@vueuse/core'
import { showToast } from 'vant'
// Assets
import bgImg from '@/assets/images/recall/bg01@2x.png'
import starImg from '@/assets/images/recall/xing@2x.png'
import emptyStateImg from '@/assets/images/recall/no@2x.png'
const bgImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/bg01@2x.png'
const starImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/xing@2x.png'
const emptyStateImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/no@2x.png'
const route = useRoute()
const router = useRouter()
......
......@@ -52,9 +52,10 @@
<script setup>
import { useRouter, useRoute } from 'vue-router'
import { useTitle } from '@vueuse/core'
import titleImg from '@/assets/images/recall/title02@2x.png'
import bgImg from '@/assets/images/recall/bg01@2x.png'
import starImg from '@/assets/images/recall/xing@2x.png'
const titleImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/title02@2x.png'
const bgImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/bg01@2x.png'
const starImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/xing@2x.png'
const router = useRouter()
const route = useRoute()
......
<template>
<div class="recall-login w-full min-h-screen relative overflow-hidden flex flex-col items-center">
<!-- Starry Background Effect -->
<!-- <StarryBackground bg-image="https://cdn.ipadbiz.cn/mlaj/images/test-bgg03.jpg" /> -->
<StarryBackground :bg-image="bgImg" />
<!-- Title Section -->
......@@ -91,8 +90,8 @@ import { showToast } from 'vant'
import { useTitle } from '@vueuse/core'
import { smsAPI } from '@/api/common'
import titleImg from '@/assets/images/recall/title01@2x.png'
import bgImg from '@/assets/images/recall/bg01@2x.png'
const titleImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/title01@2x.png'
const bgImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/bg01@2x.png'
// 路由相关
const $route = useRoute()
......
......@@ -94,11 +94,11 @@ import { Swiper, SwiperSlide } from 'swiper/vue'
import { Mousewheel } from 'swiper/modules'
import 'swiper/css'
// Assets
import bgImg from '@/assets/images/recall/bg01@2x.png'
import title03 from '@/assets/images/recall/title03@2x.png'
import title04 from '@/assets/images/recall/title04@2x.png' // Assuming title04 is "我的BEHALO足迹"
import arrowDown from '@/assets/images/recall/xia@2x.png'
const bgImg = 'https://cdn.ipadbiz.cn/mlaj/recall/img/bg01@2x.png'
const title03 = 'https://cdn.ipadbiz.cn/mlaj/recall/img/title03@2x.png'
const title04 = 'https://cdn.ipadbiz.cn/mlaj/recall/img/title04@2x.png'
const arrowDown = 'https://cdn.ipadbiz.cn/mlaj/recall/img/xia@2x.png'
// Context (Mocking auth for now as we might be in a detached flow,
// but try to use useAuth if available or fallback to local storage/mock)
......