This commit is contained in:
2025-07-08 10:26:48 +08:00
parent a36c2e8646
commit b4852c5b5c
3 changed files with 5 additions and 3 deletions

View File

@ -148,9 +148,11 @@ const pageData = reactive({
{ label: "是否转重点人员", prop: "sfZzdry", showSolt: true }
]
});
const roleList = reactive(JSON.parse(localStorage.getItem('roleList')) || [])
const roleList = ref([])
onMounted(() => {
let qx = JSON.parse(localStorage.getItem('roleList')) || [];
roleList.value = qx.map(item => item.roleCode);
getList();
tabHeightFn();
});