1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-06 07:21:24 +08:00
Files
Pinnacle-OA/ui/src/pages/notice/AlReadView.vue

23 lines
458 B
Vue

<template>
<notice-view-card />
</template>
<script lang="ts">
import { useNoticeStore } from '@/store/notice'
const noticeStore = useNoticeStore()
export default {
data() {
return {}
},
methods: {},
mounted() {
noticeStore.$patch((state) => {
state.showLoading = true
state.currentViewPage = 'AlRead'
})
noticeStore.selectAllNoticeSelf(1)
}
}
</script>
<style scoped></style>