feat(permission): add missing RBAC permission checks for unprotected pages
This commit is contained in:
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user