22 lines
390 B
Vue
22 lines
390 B
Vue
<template>
|
|
<div class="container">
|
|
<ProbationManage />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ProbationApply from "./ProbationApply";
|
|
import ProbationManage from "./ProbationManage";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
userRole: 'DM', // 实际应从登录信息获取
|
|
}
|
|
},
|
|
components: {
|
|
ProbationApply,
|
|
ProbationManage,
|
|
}
|
|
}
|
|
</script> |