Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-12-24 11:35:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2f2d0d537db99baf7667aa23322c3356c3c38b8c
2f2d0d53
1 parent
ac009015
refactor(recall): 将本地图片资源替换为CDN链接
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
19 deletions
src/views/recall/ActivityHistoryPage.vue
src/views/recall/CompleteInfoPage.vue
src/views/recall/IDQueryPage.vue
src/views/recall/boot.vue
src/views/recall/login.vue
src/views/recall/timeline.vue
src/views/recall/ActivityHistoryPage.vue
View file @
2f2d0d5
...
...
@@ -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('活动历史')
...
...
src/views/recall/CompleteInfoPage.vue
View file @
2f2d0d5
...
...
@@ -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()
...
...
src/views/recall/IDQueryPage.vue
View file @
2f2d0d5
...
...
@@ -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()
...
...
src/views/recall/boot.vue
View file @
2f2d0d5
...
...
@@ -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()
...
...
src/views/recall/login.vue
View file @
2f2d0d5
<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()
...
...
src/views/recall/timeline.vue
View file @
2f2d0d5
...
...
@@ -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)
...
...
Please
register
or
login
to post a comment