This commit is contained in:
汪少伟
2025-03-19 20:20:37 +08:00
parent 2953efb0f9
commit 3458dfe353
2 changed files with 16 additions and 9 deletions

View File

@@ -66,7 +66,11 @@
<img src="@/assets/imgs/home/informIcon@2x.png" />
<span>预警公告</span>
</div>
<a class="devui-link" @click="checkMore">更多 ></a>
<!-- <a v-if="accountInfo.access_token" class="devui-link" @click="checkMore"
>更多 <i class="icon icon-chevron-right-2"></i>
</a>
<span v-else class="text-blue-500">查看更多请先登录</span> -->
</div>
<div class="info-content">
<d-timeline :direction="'vertical'" :time-position="'right'" :position="'right'">
@@ -109,10 +113,13 @@
<script setup lang="ts">
import { ref, onMounted, onBeforeUnmount } from 'vue';
import { useRoute, useRouter } from 'vue-router';
import { useAccount } from '@/utils/hooks/useAccount';
import AdvanceSearch from '@/components/AdvanceSearch/index.vue';
import { getHomeNoticeList } from '@/api/jyh';
import EarlyWarningDetail from '@/views/Jyh/PersonalCenter/Detail/EarlyWarningDetail.vue';
const { accountInfo } = useAccount();
const route = useRoute();
const router = useRouter();
const inputGlow = ref(false);
@@ -225,7 +232,7 @@ onBeforeUnmount(() => {
const getNoticeList = async () => {
const res: any = await getHomeNoticeList();
if (!res.error) {
infoList.value = res.data.data;
infoList.value = res.data.data || [];
}
};