27 lines
506 B
Vue
27 lines
506 B
Vue
<template>
|
|
<div class="role">
|
|
<a-card :bordered="false" style="width: 100%">
|
|
<p>角色管理</p>
|
|
</a-card>
|
|
|
|
<a-card :bordered="false" class="roleItem">
|
|
<p>我是表格页面</p>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.role {
|
|
height: calc(100vh - 130px);
|
|
// background: #fff;
|
|
overflow: hidden;
|
|
.roleItem {
|
|
width: 100%;
|
|
height: calc(100vh - 100px);
|
|
overflow: hidden;
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
</style>
|