feat(permission): add missing RBAC permission checks for unprotected pages

This commit is contained in:
DXC
2026-03-25 10:13:33 +08:00
parent 57bdb6273b
commit 663a4fc9ae
2 changed files with 6 additions and 0 deletions

View File

@ -66,6 +66,9 @@
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { getScrapRecords } from '@/api/scrap'
import { useUserStore } from '@/stores/user'
const userStore = useUserStore()
const list = ref<any[]>([])
const total = ref(0)

View File

@ -101,6 +101,9 @@
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { getInboundSummaryList } from '@/api/inbound/inbound_summary'
import { useUserStore } from '@/stores/user'
const userStore = useUserStore()
const list = ref([])
const total = ref(0)