Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(icon): 修复了图标缺失的问题 删除了测试信息 #100

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading