Skip to content

Commit

Permalink
fix(icon): 修复了图标缺失的问题 删除了测试信息
Browse files Browse the repository at this point in the history
  • Loading branch information
RosyrRais committed Sep 7, 2024
1 parent 8e91c0a commit 2bbfa47
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
Binary file added src/assets/icons/foryou/foryouicon.webp
Binary file not shown.
Binary file added src/assets/icons/foryou/jhwlicon.webp
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/Home/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const questionnairePath = questionnaireInfo.path; // 获取最新的问卷地址
const isShowEditPanel = ref(false);
const registerTips = ref<string>("")
const registerTips = ref<string>("");
const showEditPanel = () => {
isShowEditPanel.value = true;
Expand All @@ -72,8 +72,8 @@ if (questionnairePath != systemStore.questionnaire.path) {
onMounted(() => {
SystemService.getAnnouncement();
SystemService.getGeneralInfo().then(res=>{
registerTips.value = res.data.registerTips
})
registerTips.value = res.data.registerTips;
});
});
const isActive = computed(() => {
Expand Down
5 changes: 1 addition & 4 deletions src/pages/about/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
</view>
</view>
</card>
<card
v-if="isDevelopment"
title="测试信息"
>
<card v-if="isDevelopment">
<view>{{ copyright }}</view>
</card>
</view>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/announcement/InformationCard/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const timeFormat = (time: string) => {
<view :class="styles.link" @tap="handleClickLink" v-if="props.source.link">点击跳转相关规定</view>
<template #footer>
<view :class="styles.logo_container">
<image src="https://img.cnpatrickstar.com/5eb88a00-1d66-49af-8c75-ff651a077503.png" alt="logo_fy" :class="styles.logo_fy" mode="aspectFit"></image>
<image src="../../../assets/icons/foryou/foryouicon.webp" alt="logo_fy" :class="styles.logo_fy" mode="aspectFit"></image>
<view :class="styles.x">X</view>
<image src="https://img.cnpatrickstar.com/2633992f-415a-4b6b-b54e-f24adaca7d42.png" alt="logo_jh" :class="styles.logo_jh" mode="aspectFit"></image>
<image src="../../../assets/icons/foryou/jhwlicon.webp" alt="logo_jh" :class="styles.logo_jh" mode="aspectFit"></image>
</view>
<view :class="styles.publisher">信息来源: {{ props.source.publisher }}</view>
<view :class="styles['publish-time']">发布时间: {{ timeFormat(props.source.publish_time) }}</view>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/lostfound/PreviewCard/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
</view>
<view :class="styles.joint" v-if="isForyou">
<image
src="https://img.cnpatrickstar.com/5eb88a00-1d66-49af-8c75-ff651a077503.png"
src="../../../assets/icons/foryou/foryouicon.webp"
alt="logo_fy"
:class="styles.logo"
mode="aspectFit"
/>
<text>x</text>
<image
src="https://img.cnpatrickstar.com/2633992f-415a-4b6b-b54e-f24adaca7d42.png"
src="../../../assets/icons/foryou/jhwlicon.webp"
alt="logo_jh"
:class="styles.logo"
mode="aspectFit"
Expand Down

0 comments on commit 2bbfa47

Please sign in to comment.