feat password

This commit is contained in:
Ironsp
2026-05-21 10:07:35 +08:00
parent ed0a1655ca
commit 1091581251
2 changed files with 26 additions and 13 deletions

View File

@@ -19,12 +19,13 @@
</template>
<el-empty v-else :description="'消息为空'"></el-empty>
</div>
<div v-if="newsList.length > 0" class="foot-box" @click="onGoToGiteeClick">前往gitee</div>
<!-- <div v-if="newsList.length > 0" class="foot-box" @click="onGoToGiteeClick">前往gitee</div> -->
</div>
</template>
<script setup lang="ts" name="layoutBreadcrumbUserNews">
import { useNoticeStore } from '@/store/modules/notice';
import { listNotice } from '@/api/system/notice';
const noticeStore = useNoticeStore();
const { readAll } = useNoticeStore();
@@ -60,6 +61,7 @@ const onGoToGiteeClick = () => {
onMounted(() => {
nextTick(() => {
getTableData();
console.log('消息列表:', newsList.value);
});
});
</script>