Files
fad_oa/ruoyi-ui/src/views/oa/peoples/status/index.vue

22 lines
390 B
Vue
Raw Normal View History

2025-03-08 15:22:29 +08:00
<template>
<div class="container">
2025-03-09 16:07:01 +08:00
<ProbationManage />
2025-03-08 15:22:29 +08:00
</div>
</template>
<script>
import ProbationApply from "./ProbationApply";
import ProbationManage from "./ProbationManage";
export default {
data() {
return {
2025-03-09 16:07:01 +08:00
userRole: 'DM', // 实际应从登录信息获取
2025-03-08 15:22:29 +08:00
}
},
components: {
ProbationApply,
ProbationManage,
}
}
</script>